{"id":16,"date":"2025-08-04T01:53:38","date_gmt":"2025-08-04T01:53:38","guid":{"rendered":"https:\/\/demo.bravisthemes.com\/dentia\/?page_id=16"},"modified":"2026-06-22T07:30:53","modified_gmt":"2026-06-22T07:30:53","slug":"home","status":"publish","type":"page","link":"https:\/\/wp.hexabiz.com\/rialtodentist\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"16\" class=\"elementor elementor-16\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5161d23 e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"5161d23\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/vimeo.com\\\/274921051&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-video-embed\" role=\"presentation\"><\/div>\n\t\t\t\t\t\t<\/div><div class=\"elementor-element elementor-element-0b31933 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"0b31933\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-e60ec7a elementor-widget elementor-widget-html\" data-id=\"e60ec7a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n\r\n<title>Transparent Slider<\/title>\r\n\r\n<style>\r\n\r\n\r\n\/* Slider *\/\r\n.slider{\r\n    position:relative;\r\n    width:100%;\r\n    height:80vh;\r\n    overflow:hidden;\r\n}\r\n\r\n\/* Slide *\/\r\n.slide{\r\n    position:absolute;\r\n    width:100%;\r\n    height:100%;\r\n    display:flex;\r\n    align-items:center;\r\n    justify-content:flex-start;\r\n    padding:0 80px;\r\n    opacity:0;\r\n    transition:0.6s;\r\n}\r\n\r\n.slide.active{\r\n    opacity:1;\r\n}\r\n\r\n\/* Glass transparent content box *\/\r\n.content{\r\n    color:#fff;\r\n    max-width:600px;\r\n\r\n   \r\n   \r\n    padding:40px;\r\n    border-radius:12px;\r\n}\r\n\r\n\/* Text *\/\r\n.content span{\r\n    display:block;\r\n    font-size:16px;\r\n    margin-bottom:10px;\r\n}\r\n\r\n.content h1{\r\n    font-size:40px;\r\n    line-height:1.3;\r\n    margin-bottom:20px;\r\n    color: #fff;\r\n}\r\n\r\n\/* Button *\/\r\n.btn{\r\n    padding:10px 20px;\r\n    border:1px solid #fff;\r\n    color:#fff;\r\n    text-decoration:none;\r\n    border-radius:6px;\r\n}\r\n\r\n.btn:hover{\r\n    background:#fff;\r\n    color:#000;\r\n}\r\n\r\n\/* Arrows *\/\r\n.arrow{\r\n    position:absolute;\r\n    top:50%;\r\n    transform:translateY(-50%);\r\n    font-size:28px;\r\n    color:#fff;\r\n    cursor:pointer;\r\n}\r\n\r\n.left{ left:20px; }\r\n.right{ right:20px; }\r\n\r\n<\/style>\r\n<\/head>\r\n\r\n<body>\r\n\r\n<div class=\"slider\">\r\n\r\n    <div class=\"slide active\">\r\n        <div class=\"content\">\r\n            <span>Family Dental Care<\/span>\r\n            <h1>Elevating Smiles with Expert Care<\/h1>\r\n            <a href=\"#\" class=\"btn\">Book Appointment<\/a>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"slide\">\r\n        <div class=\"content\">\r\n            <span>Advanced Dentistry<\/span>\r\n            <h1>Your Brightest Smile Starts Here<\/h1>\r\n            <a href=\"#\" class=\"btn\">Book Appointment<\/a>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"slide\">\r\n        <div class=\"content\">\r\n            <span>Trusted Experts<\/span>\r\n            <h1>Comfortable Care for Your Family<\/h1>\r\n            <a href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/appointment\/\" class=\"btn\">Book Appointment<\/a>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"arrow left\" onclick=\"prevSlide()\">\u276e<\/div>\r\n    <div class=\"arrow right\" onclick=\"nextSlide()\">\u276f<\/div>\r\n\r\n<\/div>\r\n\r\n<script>\r\nlet slides = document.querySelectorAll(\".slide\");\r\nlet index = 0;\r\n\r\nfunction showSlide(i){\r\n    slides.forEach(s => s.classList.remove(\"active\"));\r\n    slides[i].classList.add(\"active\");\r\n}\r\n\r\nfunction nextSlide(){\r\n    index = (index + 1) % slides.length;\r\n    showSlide(index);\r\n}\r\n\r\nfunction prevSlide(){\r\n    index = (index - 1 + slides.length) % slides.length;\r\n    showSlide(index);\r\n}\r\n\r\nsetInterval(nextSlide, 4000);\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-af43fab e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"af43fab\" data-element_type=\"container\" data-e-type=\"container\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t\t\t<div class=\"elementor-element elementor-element-7ece4f6 elementor-widget elementor-widget-heading\" data-id=\"7ece4f6\" 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\"><a href=\"\"><br>+1 (909) 999-2340 You can call or text us<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-15b34f8 e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"15b34f8\" data-element_type=\"container\" data-e-type=\"container\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-98ca70d e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"98ca70d\" data-element_type=\"container\" data-e-type=\"container\"><div class=\"elementor-element elementor-element-43ff422 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"43ff422\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-b698bb4 elementor-widget elementor-widget-pxl_image\" data-id=\"b698bb4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_image-b698bb4-3744\" class=\"pxl-image-single  style-default wow zoomInSmall\" data-wow-delay=\"300ms\" >\r\n    <div class=\"pxl-item--inner \" data-wow-delay=\"120ms\">\r\n        \r\n                                <div class=\"pxl-item--bg bg-image wow scaleIn\" data-wow-delay=\"300ms\" style=\"background-image: url(https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/about-img1.jpg);\"><\/div>\r\n                                <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-4c3a639 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"4c3a639\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-3a26ecd elementor-widget elementor-widget-pxl_image\" data-id=\"3a26ecd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_image-3a26ecd-4178\" class=\"pxl-image-single  style-default wow zoomInSmall\" data-wow-delay=\"500ms\" >\r\n    <div class=\"pxl-item--inner \" data-wow-delay=\"120ms\">\r\n        \r\n                                <div class=\"pxl-item--bg bg-image wow scaleIn\" data-wow-delay=\"500ms\" style=\"background-image: url(https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/about-img2.jpg);\"><\/div>\r\n                                <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-9dd8e84 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"9dd8e84\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-b0297bf elementor-widget elementor-widget-pxl_heading\" data-id=\"b0297bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-b0297bf-7052\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\n\t\t<h2 class=\"pxl-item--title wow fadeInUp\" data-wow-delay=\"400ms\">\n\t\t\tOur Office is Here for You! \t\t\n\t\t<\/h2>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6bc87e8 elementor-widget elementor-widget-pxl_text_editor\" data-id=\"6bc87e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_text_editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_text_editor-6bc87e8-4798\" class=\"pxl-image-wg\" duration=\"1\">\n\t<div class=\"pxl-text-editor\">\n\t\t<div class=\"pxl-item--inner wow fadeInUp\" data-wow-delay=\"500ms\">\n\t\t\t<p>We are always welcoming new patients and we would love to have you as part of our dental family. Please explore our web site to learn more about us. You can find information about our staff, our office, and the procedures and services that we offer.<\/p><p>If you have any questions please call us. We love hearing from our patients and anyone who may be interested in becoming one.<\/p><p>Smile Ave. of Rialto. is a family-owned dental practice for families just like yours! We treat everyone from babies to grandparents! Our staff is extremely friendly, our doctors are honest in their diagnosis, and we always make sure we are doing what&#8217;s best for you!<\/p>\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-9f68bac e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"9f68bac\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-ac1ac70 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"ac1ac70\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-c74a3ee elementor-widget elementor-widget-pxl_heading\" data-id=\"c74a3ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-c74a3ee-2146\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\t\t\t<div class=\"pxl-item--subtitle px-sub-title-default wow fadeInUp\" data-wow-delay=\"300ms\">\n\t\t\t\t\t\t\t\t<span class=\"pxl-item--subtext\">\n\t\t\t\t\tWe look forward to hearing from you.\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\n\t\t<h2 class=\"pxl-item--title wow fadeInUp\" data-wow-delay=\"400ms\">\n\t\t\tFeatured Services\t\t\n\t\t<\/h2>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72847f9 elementor-widget elementor-widget-pxl_text_editor\" data-id=\"72847f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_text_editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_text_editor-72847f9-4801\" class=\"pxl-image-wg\" duration=\"1\">\n\t<div class=\"pxl-text-editor\">\n\t\t<div class=\"pxl-item--inner wow fadeInUp\" data-wow-delay=\"500ms\">\n\t\t\t\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7371f8b e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"7371f8b\" data-element_type=\"container\" data-e-type=\"container\"><div class=\"elementor-element elementor-element-37741dc e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"37741dc\" data-element_type=\"container\" data-e-type=\"container\"><div class=\"elementor-element elementor-element-5855528 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"5855528\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-ff281fa elementor-widget elementor-widget-pxl_icon_box\" data-id=\"ff281fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_icon_box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"pxl-icon-box pxl-icon-box3\">\r\n\t<div class=\"pxl-item-inner\">\r\n                            <div class=\"pxl-item--icon wow scaleIn\" data-wow-delay=\"300ms\">\r\n                <img decoding=\"async\" class=\"\" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/tooth-1-70x70.png\" width=\"70\" height=\"70\" alt=\"tooth-1\" title=\"tooth-1\" \/>            <\/div>\r\n        \t\t<div class=\"pxl-meta-content wow fadeInUp\" data-wow-delay=\"500ms\">\r\n            <h4 class=\"pxl-item-title\">\r\n                General Dentistry            <\/h4>\r\n            <div class=\"pxl-item-desc\">\r\n                In general dentistry, the dentist is the primary care provider for patients of all ages and is responsible for the prevention...            <\/div>\r\n            <div class=\"pxl-btn-section\">\r\n                <a class=\"pxl-banner-btn\" href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/service\/general-dentistry\/\">\r\n                    <span class=\"pxl-btn-icon\">\r\n                        <i aria-hidden=\"true\" class=\"far fa-plus\"><\/i>\r\n                    <\/span>\r\n                    <span class=\"pxl-title-btn\">\r\n                        Read more                    <\/span>\r\n                <\/a>\r\n            <\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-62a7ae9 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"62a7ae9\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-c880081 elementor-widget elementor-widget-pxl_icon_box\" data-id=\"c880081\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_icon_box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"pxl-icon-box pxl-icon-box3\">\r\n\t<div class=\"pxl-item-inner\">\r\n                            <div class=\"pxl-item--icon wow scaleIn\" data-wow-delay=\"300ms\">\r\n                <img decoding=\"async\" class=\"\" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/tooth-2-70x70.png\" width=\"70\" height=\"70\" alt=\"tooth-2\" title=\"tooth-2\" \/>            <\/div>\r\n        \t\t<div class=\"pxl-meta-content wow fadeInUp\" data-wow-delay=\"500ms\">\r\n            <h4 class=\"pxl-item-title\">\r\n                Fillings            <\/h4>\r\n            <div class=\"pxl-item-desc\">\r\n                Are dental amalgams safe? Is it possible to have an allergic reaction to amalgam?            <\/div>\r\n            <div class=\"pxl-btn-section\">\r\n                <a class=\"pxl-banner-btn\" href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/service\/cosmetic-dentistry\/\">\r\n                    <span class=\"pxl-btn-icon\">\r\n                        <i aria-hidden=\"true\" class=\"far fa-plus\"><\/i>\r\n                    <\/span>\r\n                    <span class=\"pxl-title-btn\">\r\n                        Read more                    <\/span>\r\n                <\/a>\r\n            <\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-964d2d6 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"964d2d6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t<div class=\"elementor-element elementor-element-336bf6f elementor-widget elementor-widget-pxl_icon_box\" data-id=\"336bf6f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_icon_box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"pxl-icon-box pxl-icon-box3\">\r\n\t<div class=\"pxl-item-inner\">\r\n                            <div class=\"pxl-item--icon wow scaleIn\" data-wow-delay=\"300ms\">\r\n                <img decoding=\"async\" class=\"\" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/tooth-3-70x70.png\" width=\"70\" height=\"70\" alt=\"tooth-3\" title=\"tooth-3\" \/>            <\/div>\r\n        \t\t<div class=\"pxl-meta-content wow fadeInUp\" data-wow-delay=\"500ms\">\r\n            <h4 class=\"pxl-item-title\">\r\n                Extractions            <\/h4>\r\n            <div class=\"pxl-item-desc\">\r\n                When restoration procedures such as root canal therapy, crowns, or fillings are not enough to save a tooth, it may need to be pulled, or extracted.            <\/div>\r\n            <div class=\"pxl-btn-section\">\r\n                <a class=\"pxl-banner-btn\" href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/service\/pediatric-dentistry\/\">\r\n                    <span class=\"pxl-btn-icon\">\r\n                        <i aria-hidden=\"true\" class=\"far fa-plus\"><\/i>\r\n                    <\/span>\r\n                    <span class=\"pxl-title-btn\">\r\n                        Read more                    <\/span>\r\n                <\/a>\r\n            <\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-2e4cbee e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"2e4cbee\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-2029233 elementor-widget elementor-widget-pxl_icon_box\" data-id=\"2029233\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_icon_box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"pxl-icon-box pxl-icon-box3\">\r\n\t<div class=\"pxl-item-inner\">\r\n                            <div class=\"pxl-item--icon wow scaleIn\" data-wow-delay=\"300ms\">\r\n                <img loading=\"lazy\" decoding=\"async\" class=\"\" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2025\/08\/tooth-4-70x70.png\" width=\"70\" height=\"70\" alt=\"tooth-4\" title=\"tooth-4\" \/>            <\/div>\r\n        \t\t<div class=\"pxl-meta-content wow fadeInUp\" data-wow-delay=\"500ms\">\r\n            <h4 class=\"pxl-item-title\">\r\n                Removable Dentures            <\/h4>\r\n            <div class=\"pxl-item-desc\">\r\n                A denture is a removable replacement for missing teeth and adjacent tissues. \n            <\/div>\r\n            <div class=\"pxl-btn-section\">\r\n                <a class=\"pxl-banner-btn\" href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/service\/restorative-dentistry\/\">\r\n                    <span class=\"pxl-btn-icon\">\r\n                        <i aria-hidden=\"true\" class=\"far fa-plus\"><\/i>\r\n                    <\/span>\r\n                    <span class=\"pxl-title-btn\">\r\n                        Read more                    <\/span>\r\n                <\/a>\r\n            <\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div class=\"elementor-element elementor-element-e71413a elementor-align-center elementor-widget elementor-widget-pxl_button\" data-id=\"e71413a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_button-e71413a-8945\" class=\"pxl-button pxl-atc-link \" data-wow-delay=\"ms\">\r\n    <a href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/all-services\/\" class=\"btn pxl-icon-active btn-default  pxl-icon--left\" data-wow-delay=\"ms\" data-onepage-offset=\"\">\r\n        \r\n                \r\n        <span class=\"pxl--btn-text\" data-text=\"View All Services\">\r\n            View All Services        <\/span>\r\n        \r\n                    <span class=\"pxl--text-wrap\">\r\n                <span class=\"pxl--btn-text1\">View All Services<\/span>\r\n                <span class=\"pxl--btn-text2\">View All Services<\/span>\r\n            <\/span>\r\n         \r\n\r\n    <\/a>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-898644f e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"898644f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t\t\t<div class=\"elementor-element elementor-element-689ae60 elementor-widget elementor-widget-pxl_heading\" data-id=\"689ae60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-689ae60-4976\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\t\t\t<div class=\"pxl-item--subtitle px-sub-title-default \" data-wow-delay=\"ms\">\n\t\t\t\t\t\t\t\t<span class=\"pxl-item--subtext\">\n\t\t\t\t\tWe look forward to hearing from you.\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\n\t\t<h3 class=\"pxl-item--title \" data-wow-delay=\"ms\">\n\t\t\tHours Of Operation\t\t\n\t\t<\/h3>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-b92d7a4 e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"b92d7a4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-6f816eb e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"6f816eb\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-1a76ada elementor-widget elementor-widget-pxl_list\" data-id=\"1a76ada\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-list pxl-list1 style-default\">\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Monday : 9:00 AM-6:00 PM<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Tuesday : 9:00 AM-6:00 PM<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n            <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-fdf375b e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"fdf375b\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-d098c6b elementor-widget elementor-widget-pxl_list\" data-id=\"d098c6b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-list pxl-list1 style-default\">\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Wednesday : 9:00 AM-6:00 PM<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Thursday : 9:00 AM-6:00 PM<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n            <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-fa4ec53 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"fa4ec53\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-277702d elementor-widget elementor-widget-pxl_list\" data-id=\"277702d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-list pxl-list1 style-default\">\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Friday : 9:00 AM-2:00 PM <\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Saturday : 9:00 AM-2:00 PM<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span> Every Other Friday\/Saturday<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n            <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-df53fd4 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"df53fd4\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-e6919cc elementor-widget elementor-widget-pxl_list\" data-id=\"e6919cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-list pxl-list1 style-default\">\r\n                    <div class=\"pxl--item \" data-wow-delay=\"ms\">\r\n                <a class=\"pxl-item-link\" >\r\n                                            <div class=\"pxl-item--icon\">\r\n                                                    <\/div>\r\n                                        <div class=\"pxl-item--text el-empty\">\r\n                        <span>Sunday : Closed<\/span>\r\n                    <\/div>\r\n                <\/a>\r\n            <\/div>\r\n            <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-d0d5540 e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"d0d5540\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-964e490 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"964e490\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-d075595 elementor-widget elementor-widget-pxl_heading\" data-id=\"d075595\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-d075595-4830\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\t\t\t<div class=\"pxl-item--subtitle px-sub-title-default wow fadeInUp\" data-wow-delay=\"300ms\">\n\t\t\t\t\t\t\t\t<span class=\"pxl-item--subtext\">\n\t\t\t\t\t Meet Our Dental Team\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\n\t\t<h2 class=\"pxl-item--title wow fadeInUp\" data-wow-delay=\"400ms\">\n\t\t\tMeet Our Doctors\t\t\n\t\t<\/h2>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-acd7da4 elementor-widget elementor-widget-pxl_text_editor\" data-id=\"acd7da4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_text_editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_text_editor-acd7da4-1039\" class=\"pxl-image-wg\" duration=\"1\">\n\t<div class=\"pxl-text-editor\">\n\t\t<div class=\"pxl-item--inner wow fadeInUp\" data-wow-delay=\"500ms\">\n\t\t\t\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-8e36ff0 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"8e36ff0\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-9c707a0 elementor-widget elementor-widget-pxl_team_grid\" data-id=\"9c707a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_team_grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-grid pxl-team-grid pxl-team-grid1\" data-layout=\"fitRows\">\n        <div class=\"pxl-grid-inner pxl-grid-masonry row\" data-gutter=\"15\">\n                            <div class=\"pxl-grid-item col-xl-4 col-lg-4 col-md-6 col-sm-6 col-12\">\n                    <div class=\"pxl-item--inner\">\n                                                    <div class=\"pxl-item--image\">\n                                <div class=\"pxl-img wow zoomInSmall\" data-wow-delay=\"600ms\">\n                                    <img loading=\"lazy\" decoding=\"async\" class=\"no-lazyload \" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2026\/04\/6359388ce7bb7_EHayek.jpg-370x500.webp\" width=\"370\" height=\"500\" alt=\"6359388ce7bb7_EHayek.jpg\" title=\"6359388ce7bb7_EHayek.jpg\" \/>                                <\/div>\n                            <\/div>\n                                                <div class=\"pxl-item-content wow fadeInDown\" data-wow-delay=\"700ms\">\n                            <div class=\"pxl-content\">\n                                <h4 class=\"pxl-item--title\">\n                                    Dr. Ezabelle Hayek                                <\/h4>\n                                <div class=\"pxl-item--position\">Managing Dentist<\/div>\n                            <\/div>\n                        <\/div>\n                   <\/div>\n                <\/div>\n                            <div class=\"pxl-grid-item col-xl-4 col-lg-4 col-md-6 col-sm-6 col-12\">\n                    <div class=\"pxl-item--inner\">\n                                                    <div class=\"pxl-item--image\">\n                                <div class=\"pxl-img wow zoomInSmall\" data-wow-delay=\"600ms\">\n                                    <img loading=\"lazy\" decoding=\"async\" class=\"no-lazyload \" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2026\/04\/63593e297d615_7ede73ed58ac42cda0ee4f16b18ef6fd.jpg-370x500.webp\" width=\"370\" height=\"500\" alt=\"63593e297d615_7ede73ed58ac42cda0ee4f16b18ef6fd.jpg\" title=\"63593e297d615_7ede73ed58ac42cda0ee4f16b18ef6fd.jpg\" \/>                                <\/div>\n                            <\/div>\n                                                <div class=\"pxl-item-content wow fadeInDown\" data-wow-delay=\"700ms\">\n                            <div class=\"pxl-content\">\n                                <h4 class=\"pxl-item--title\">\n                                    Dr. Sameer Patel                                <\/h4>\n                                <div class=\"pxl-item--position\">General Dentist<\/div>\n                            <\/div>\n                        <\/div>\n                   <\/div>\n                <\/div>\n                            <div class=\"pxl-grid-item col-xl-4 col-lg-4 col-md-6 col-sm-6 col-12\">\n                    <div class=\"pxl-item--inner\">\n                                                    <div class=\"pxl-item--image\">\n                                <div class=\"pxl-img wow zoomInSmall\" data-wow-delay=\"600ms\">\n                                    <img loading=\"lazy\" decoding=\"async\" class=\"no-lazyload \" src=\"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-content\/uploads\/2026\/06\/DrMakbul.png-1-370x400.webp\" width=\"370\" height=\"400\" alt=\"DrMakbul.png (1)\" title=\"DrMakbul.png (1)\" \/>                                <\/div>\n                            <\/div>\n                                                <div class=\"pxl-item-content wow fadeInDown\" data-wow-delay=\"700ms\">\n                            <div class=\"pxl-content\">\n                                <h4 class=\"pxl-item--title\">\n                                    Dr.Makbul Patel                                <\/h4>\n                                <div class=\"pxl-item--position\">General Dentist<\/div>\n                            <\/div>\n                        <\/div>\n                   <\/div>\n                <\/div>\n                        <div class=\"grid-sizer col-xl-4 col-lg-4 col-md-6 col-sm-6 col-12\"><\/div>\n        <\/div>\n    <\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-faed713 e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"faed713\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-ba2fc12 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"ba2fc12\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-cd71716 elementor-widget elementor-widget-pxl_heading\" data-id=\"cd71716\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-cd71716-8352\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\t\t\t<div class=\"pxl-item--subtitle px-sub-title-default wow fadeInUp\" data-wow-delay=\"300ms\">\n\t\t\t\t\t\t\t\t<span class=\"pxl-item--subtext\">\n\t\t\t\t\tWhat Our Clients Say About Us\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\n\t\t<h2 class=\"pxl-item--title wow fadeInUp\" data-wow-delay=\"400ms\">\n\t\t\tTestimonials\t\t\n\t\t<\/h2>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-6356f20 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"6356f20\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-69aee62 elementor-widget elementor-widget-pxl_testimonial_carousel\" data-id=\"69aee62\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_testimonial_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"pxl-swiper-sliders pxl-testimonial-carousel pxl-testimonial-carousel2\" >\n        <div class=\"pxl-carousel-inner\" data-center=\"false\">\n            <div class=\"pxl-swiper-container\" dir=\"ltr\" data-settings=\"{&quot;slide_direction&quot;:&quot;horizontal&quot;,&quot;slide_percolumn&quot;:&quot;1&quot;,&quot;slide_mode&quot;:&quot;slide&quot;,&quot;slides_to_show&quot;:&quot;3&quot;,&quot;slides_to_show_xxl&quot;:&quot;3&quot;,&quot;slides_to_show_lg&quot;:&quot;3&quot;,&quot;slides_to_show_md&quot;:&quot;3&quot;,&quot;slides_to_show_sm&quot;:&quot;2&quot;,&quot;slides_to_show_xs&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrow&quot;:&quot;false&quot;,&quot;pagination&quot;:&quot;false&quot;,&quot;pagination_type&quot;:&quot;bullets&quot;,&quot;pagination_number&quot;:&quot;true&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;&quot;,&quot;pause_on_interaction&quot;:&quot;true&quot;,&quot;delay&quot;:5000,&quot;loop&quot;:&quot;true&quot;,&quot;speed&quot;:500,&quot;center&quot;:&quot;false&quot;}\">\n                <div class=\"pxl-swiper-wrapper\">\n                                            <div class=\"pxl-swiper-slide\">\n                            <div class=\"pxl-item--inner \" data-wow-delay=\"ms\">\n                                <div class=\"pxl-icon\">\n                                    <i aria-hidden=\"true\" class=\"fas fa-quote-left\"><\/i>\n                                <\/div>\n                                                                <div class=\"pxl-holder-content\">\n                                    <div class=\"pxl-item--title\">\n                                        Renee M.                                    <\/div>\n                                    <div class=\"pxl-item--position\"><\/div>\n                                <\/div>\n                                <div class=\"pxl-item--desc\">\n                                    \"Such a great dentist office. The staff was very friendly and helpful. The dentist was nice, took his time to explain things, asked if we had questions and then genuinely took time with a response. He was gentle, a huge plus, and the whole office is professional. If you're looking for a dentist, you owe it to yourself to try this one out!\"                                <\/div>\n                           <\/div>\n                        <\/div>\n                                            <div class=\"pxl-swiper-slide\">\n                            <div class=\"pxl-item--inner \" data-wow-delay=\"ms\">\n                                <div class=\"pxl-icon\">\n                                    <i aria-hidden=\"true\" class=\"fas fa-quote-left\"><\/i>\n                                <\/div>\n                                                                <div class=\"pxl-holder-content\">\n                                    <div class=\"pxl-item--title\">\n                                        Sohair M.                                    <\/div>\n                                    <div class=\"pxl-item--position\"><\/div>\n                                <\/div>\n                                <div class=\"pxl-item--desc\">\n                                    Before I came here I was always weary of coming to the dentist because for a couple reasons. I felt like (1) I was just another \"number\" on their client list and (2) I don't think I ever saw the same dentist twice.\n\nFrom day one, I got a real family feel from Dr. Patel and really felt like I was being cared for. Dr. Patel and his whole staff are always super receptive to anything you tell them and are great at what they do. I always recommend this place to my friends and family in the area. Its as good as it gets.\n\nPS. Their office is very cozy too \ud83d\ude42                                <\/div>\n                           <\/div>\n                        <\/div>\n                                            <div class=\"pxl-swiper-slide\">\n                            <div class=\"pxl-item--inner \" data-wow-delay=\"ms\">\n                                <div class=\"pxl-icon\">\n                                    <i aria-hidden=\"true\" class=\"fas fa-quote-left\"><\/i>\n                                <\/div>\n                                                                <div class=\"pxl-holder-content\">\n                                    <div class=\"pxl-item--title\">\n                                         Karina M.                                    <\/div>\n                                    <div class=\"pxl-item--position\"><\/div>\n                                <\/div>\n                                <div class=\"pxl-item--desc\">\n                                    After my initial visit with this amazing group of people I had several follow-ups and I have to say they were all great. I am sure I am due for another visit (If the lovely ladies at the front are reading this I promise I'll schedule an appointment soon) but time has gotten away from me. I just wanted to update my initial review for anyone wondering if they are really that great let me just say, they are. My whole family now visits this Dentist office and they have done great work for all of us.                                <\/div>\n                           <\/div>\n                        <\/div>\n                                            <div class=\"pxl-swiper-slide\">\n                            <div class=\"pxl-item--inner \" data-wow-delay=\"ms\">\n                                <div class=\"pxl-icon\">\n                                    <i aria-hidden=\"true\" class=\"fas fa-quote-left\"><\/i>\n                                <\/div>\n                                                                <div class=\"pxl-holder-content\">\n                                    <div class=\"pxl-item--title\">\n                                        Christina A.                                    <\/div>\n                                    <div class=\"pxl-item--position\"><\/div>\n                                <\/div>\n                                <div class=\"pxl-item--desc\">\n                                    I took my kids here and they did a great job, very professional and polite. They made my kids feel comfortable and safe. So I just wanted to say thank you to Yesenia, Brittany, and Dr. Sameer Patel\nI would highly recommend you to everyone. Thank you                                <\/div>\n                           <\/div>\n                        <\/div>\n                                    <\/div>\n            <\/div>\n        <\/div>\n\n                    <\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-d1c1cbb e-flex e-con-boxed pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-parent \" data-id=\"d1c1cbb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\t\t\t<div class=\"e-con-inner\">\r\n\t\t<div class=\"elementor-element elementor-element-8418409 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"8418409\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-0d1c6c2 elementor-widget elementor-widget-pxl_heading\" data-id=\"0d1c6c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_heading-0d1c6c2-8702\" class=\"pxl-heading px-sub-title-default-style\">\n\t<div class=\"pxl-heading--inner\">\n\t\t\n\t\t\n\t\t<h3 class=\"pxl-item--title \" data-wow-delay=\"ms\">\n\t\t\tReady to Book Your Appointment?\t\t\n\t\t<\/h3>\n\n\t\t\t\t\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3cf7c4b elementor-widget elementor-widget-pxl_text_editor\" data-id=\"3cf7c4b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_text_editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl_text_editor-3cf7c4b-5332\" class=\"pxl-image-wg\" duration=\"1\">\n\t<div class=\"pxl-text-editor\">\n\t\t<div class=\"pxl-item--inner \" data-wow-delay=\"ms\">\n\t\t\t<p>We look forward to hearing from you. Please note, this is only a request. Please fill out the<br \/>requested information and our oBice will contact you to set up an appointment.<\/p><p><br \/>Esperamos tener noticias suyas. Por favor, tenga en cuenta que esto es solo una solicitud.<br \/>Complete la informaci\u00f3n requerida y nuestra oficina se pondr\u00e1 en contacto con usted para<br \/>concertar una cita.<\/p>\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t<div class=\"elementor-element elementor-element-97ded05 e-con-full e-flex pxl-column-none pxl-row-scroll-none pxl-zoom-point-false pxl-section-overflow-visible pxl-section-fix-none pxl-full-content-with-space-none pxl-bg-color-none pxl-section-overlay-none e-con e-child \" data-id=\"97ded05\" data-element_type=\"container\" data-e-type=\"container\">\t\t<div class=\"elementor-element elementor-element-b7a7381 elementor-align-center elementor-widget elementor-widget-pxl_button\" data-id=\"b7a7381\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"pxl_button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"pxl-pxl_button-b7a7381-6248\" class=\"pxl-button pxl-atc-link \" data-wow-delay=\"ms\">\r\n    <a href=\"https:\/\/wp.hexabiz.com\/rialtodentist\/appointment\/\" class=\"btn pxl-icon-active btn-default  pxl-icon--left\" data-wow-delay=\"ms\" data-onepage-offset=\"\">\r\n        \r\n                \r\n        <span class=\"pxl--btn-text\" data-text=\"Book Appointment\">\r\n            Book Appointment        <\/span>\r\n        \r\n                    <span class=\"pxl--text-wrap\">\r\n                <span class=\"pxl--btn-text1\">Book Appointment<\/span>\r\n                <span class=\"pxl--btn-text2\">Book Appointment<\/span>\r\n            <\/span>\r\n         \r\n\r\n    <\/a>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Transparent Slider Family Dental Care Elevating Smiles with Expert Care Book Appointment Advanced Dentistry Your Brightest Smile Starts Here Book Appointment Trusted Experts Comfortable Care for Your Family Book Appointment \u276e \u276f +1 (909) 999-2340 You can call or text us Our Office is Here for You! We are always welcoming new patients and we [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"pagelayer_contact_templates":[],"_pagelayer_content":"","footnotes":""},"class_list":["post-16","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/pages\/16","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/comments?post=16"}],"version-history":[{"count":79,"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/pages\/16\/revisions"}],"predecessor-version":[{"id":3988,"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/pages\/16\/revisions\/3988"}],"wp:attachment":[{"href":"https:\/\/wp.hexabiz.com\/rialtodentist\/wp-json\/wp\/v2\/media?parent=16"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}