-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htmlp=50844.html
1982 lines (1491 loc) · 149 KB
/
index.htmlp=50844.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<script>
if(!gform){document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0});var gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),null==t&&(t=10),gform.hooks[o][n].push({tag:i,callable:r,priority:t})},doHook:function(o,n,r){if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[o][n]){var t,i=gform.hooks[o][n];i.sort(function(o,n){return o.priority-n.priority});for(var e=0;e<i.length;e++)"function"!=typeof(t=i[e].callable)&&(t=window[t]),"action"==o?t.apply(null,r):r[0]=t.apply(null,r)}if("filter"==o)return r[0]},removeHook:function(o,n,r,t){if(null!=gform.hooks[o][n])for(var i=gform.hooks[o][n],e=i.length-1;0<=e;e--)null!=t&&t!=i[e].tag||null!=r&&r!=i[e].priority||i.splice(e,1)}}}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<link rel="profile" href="http://gmpg.org/xfn/11">
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO plugin v16.8 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Weekly Coach | Simplify Your Marketing + Beat Writer's Block</title>
<meta name="description" content="Never wonder what to post on social media. Get social posts and fresh marketing ideas every week with Weekly Coach. Buy for only $27/month!" />
<link rel="canonical" href="https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Weekly Coach | Simplify Your Marketing + Beat Writer's Block" />
<meta property="og:description" content="Never wonder what to post on social media. Get social posts and fresh marketing ideas every week with Weekly Coach. Buy for only $27/month!" />
<meta property="og:url" content="https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/" />
<meta property="og:site_name" content="Roadside Dental Marketing" />
<meta property="article:modified_time" content="2021-09-21T03:48:04+00:00" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:label1" content="Est. reading time" />
<meta name="twitter:data1" content="19 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.roadsidedentalmarketing.com/#organization","name":"Roadside Dental Marketing","url":"https://www.roadsidedentalmarketing.com/","sameAs":[],"logo":{"@type":"ImageObject","@id":"https://www.roadsidedentalmarketing.com/#logo","inLanguage":"en-US","url":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/Roadside-Dental-Marketing-Logo-Horizontal.png","contentUrl":"https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/Roadside-Dental-Marketing-Logo-Horizontal.png","width":1000,"height":102,"caption":"Roadside Dental Marketing"},"image":{"@id":"https://www.roadsidedentalmarketing.com/#logo"}},{"@type":"WebSite","@id":"https://www.roadsidedentalmarketing.com/#website","url":"https://www.roadsidedentalmarketing.com/","name":"Roadside Dental Marketing","description":"Dental Website Design and Marketing Solutions That Work.","publisher":{"@id":"https://www.roadsidedentalmarketing.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.roadsidedentalmarketing.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/#webpage","url":"https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/","name":"Weekly Coach | Simplify Your Marketing + Beat Writer's Block","isPartOf":{"@id":"https://www.roadsidedentalmarketing.com/#website"},"datePublished":"2021-03-22T20:57:40+00:00","dateModified":"2021-09-21T03:48:04+00:00","description":"Never wonder what to post on social media. Get social posts and fresh marketing ideas every week with Weekly Coach. Buy for only $27/month!","breadcrumb":{"@id":"https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/"]}]},{"@type":"BreadcrumbList","@id":"https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.roadsidedentalmarketing.com/"},{"@type":"ListItem","position":2,"name":"Services","item":"https://www.roadsidedentalmarketing.com/services/"},{"@type":"ListItem","position":3,"name":"Dental Marketing","item":"https://www.roadsidedentalmarketing.com/services/marketing/"},{"@type":"ListItem","position":4,"name":"Weekly Coach"}]}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='stylesheet' id='gtranslate-style-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/gtranslate/gtranslate-style24.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='simple-sitemap-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/simple-sitemap-pro/modules/css/simple-sitemap.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='birdeye-integration-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/birdeye-integration/public/css/birdeye-integration-public.css?ver=0.4.0' media='all' />
<link rel='stylesheet' id='Slick-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/slick.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='Slick-Theme-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/slicktheme.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='primary-button-css-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/modules-less/primary-button.css?ver=1' media='all' />
<link rel='stylesheet' id='ppress-frontend-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/css/frontend.min.css?ver=3.1.15' media='all' />
<link rel='stylesheet' id='ppress-flatpickr-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.css?ver=3.1.15' media='all' />
<link rel='stylesheet' id='ppress-select2-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.css?ver=5.7.3' media='all' />
<link rel='stylesheet' id='styles-css' href='https://www.roadsidedentalmarketing.com/wp-content/themes/mydivi-light/css/global.css?ver=1624281056' media='all' />
<link rel='stylesheet' id='Customizer-CSS-css' href='https://www.roadsidedentalmarketing.com/wp-content/uploads/customizer-less/customizer-less.css?ver=1' media='all' />
<link rel='stylesheet' id='font-one-css' href='https://fonts.googleapis.com/css2?family=Montserrat%3Aital%2Cwght%400%2C300%3B0%2C400%3B0%2C700%3B1%2C400&display=swap&ver=5.7.3' media='all' />
<link rel='stylesheet' id='font-two-css' href='https://fonts.googleapis.com/css2?family=Yellowtail&display=swap&ver=5.7.3' media='all' />
<link rel='stylesheet' id='magnific-popup-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/includes/builder/styles/magnific_popup.css?ver=4.9.10' media='all' />
<link rel='stylesheet' id='builder-frontend-css' href='https://www.roadsidedentalmarketing.com/wp-content/plugins/dcf-2-0/css/frontend-builder.css?ver=1' media='all' />
<link rel='stylesheet' id='Card-Factory-CSS-css' href='https://www.roadsidedentalmarketing.com/wp-content/uploads/customizer-less/card-factory-less.css?ver=5.7.3' media='all' />
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/jquery/jquery.min.js?ver=3.5.1' id='jquery-core-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/simple-sitemap-pro/modules/js/simple-sitemap.js?ver=5.7.3' id='simple-sitemap-js-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/birdeye-integration/public/js/birdeye-integration-public.js?ver=0.4.0' id='birdeye-integration-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.js?ver=5.7.3' id='ppress-flatpickr-js'></script>
<script src='https://www.roadsidedentalmarketing.com/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.js?ver=5.7.3' id='ppress-select2-js'></script>
<script id='air_light_legacy-js-before'>
var supportsES6 = (function () {
try {
new Function("(a = 0) => a");
return true;
} catch (err) {
return false;
}
}());
var legacyScript ="https://www.roadsidedentalmarketing.com/wp-content/themes/mydivi-light/js/dist/legacy.js";
if (!supportsES6) {
var script = document.createElement("script");
script.src = legacyScript;
document.head.appendChild(script);
}
</script>
<link rel="https://api.w.org/" href="https://www.roadsidedentalmarketing.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.roadsidedentalmarketing.com/wp-json/wp/v2/pages/50844" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.roadsidedentalmarketing.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.roadsidedentalmarketing.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.7.3" />
<link rel='shortlink' href='https://www.roadsidedentalmarketing.com/?p=50844' />
<link rel="alternate" type="application/json+oembed" href="https://www.roadsidedentalmarketing.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.roadsidedentalmarketing.com%2Fservices%2Fmarketing%2Fweekly-coach%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.roadsidedentalmarketing.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.roadsidedentalmarketing.com%2Fservices%2Fmarketing%2Fweekly-coach%2F&format=xml" />
<link rel="preload" href="https://www.roadsidedentalmarketing.com/wp-content/plugins/divi-builder/core/admin/fonts/modules.ttf" as="font" crossorigin="anonymous">
<!-- CJT Global Block (129) - GetEmails Script - START -->
<script type="text/javascript">
!function(){var geq=window.geq=window.geq||[];if(geq.initialize) return;if (geq.invoked){if (window.console && console.error) {console.error("GE snippet included twice.");}return;}geq.invoked = true;geq.methods = ["page", "suppress", "trackOrder", "identify", "addToCart"];geq.factory = function(method){return function(){var args = Array.prototype.slice.call(arguments);args.unshift(method);geq.push(args);return geq;};};for (var i = 0; i < geq.methods.length; i++) {var key = geq.methods[i];geq[key] = geq.factory(key);}geq.load = function(key){var script = document.createElement("script");script.type = "text/javascript";script.async = true;if (location.href.includes("vge=true")) {script.src = "https://s3-us-west-2.amazonaws.com/jsstore/a/" + key + "/ge.js?v=" + Math.random();} else {script.src = "https://s3-us-west-2.amazonaws.com/jsstore/a/" + key + "/ge.js";}var first = document.getElementsByTagName("script")[0];first.parentNode.insertBefore(script, first);};geq.SNIPPET_VERSION = "1.5.1";
geq.load("2J0H5DY");}();
</script>
<script>geq.page()</script>
<!-- CJT Global Block (129) - GetEmails Script - END -->
<!-- CJT Global Block (127) - Lucky Orange HeatMap - START -->
<script type='text/javascript'>
window.__lo_site_id = 305260;
(function() {
var wa = document.createElement('script'); wa.type = 'text/javascript'; wa.async = true;
wa.src = 'https://d10lpsik1i8c69.cloudfront.net/w.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wa, s);
})();
</script>
<!-- CJT Global Block (127) - Lucky Orange HeatMap - END -->
<!-- CJT Global Block (89) - Google Tag Manager Header - START -->
<meta name="ahrefs-site-verification" content="d7052cdd00896baa1529252fd3822a6ba1f134a299778ff7e9bd4b9493eabc64">
<meta name="google-site-verification" content="Ive0TZUcqXSFxGpZ9ajZmGWmzUCurLdBy1goF8LA3qc" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KN8N6W8');</script>
<!-- End Google Tag Manager -->
<!-- Hotjar Tracking Code for https://www.roadsidedentalmarketing.com -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:2221609,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- CJT Global Block (89) - Google Tag Manager Header - END -->
<!-- CJT Global Block (28) - Gravity Form Scroll - START -->
<script>
jQuery(function($) {
function FormCompleteScroll(id){
id = id === "#" ? "#site" : id;
var itemOffset = $(id).offset().top;
var HeaderHeightFH = $(".fullheader").outerHeight();
var FullScroll = itemOffset-HeaderHeightFH;
$("html, body").bind("scroll mousedown DOMMouseScroll mousewheel keyup", function(){
$('html, body').stop();
});
$('html,body').animate({ scrollTop: FullScroll }, 400, function(){
$("html, body").unbind("scroll mousedown DOMMouseScroll mousewheel keyup");
});
}
jQuery(document).bind('gform_confirmation_loaded', function(event, formId){
if(formId == 11) {
if($("#FB-Form-Invisalign").length > 0) {
FormCompleteScroll("#FB-Form-Invisalign");
}
if($("#special-offer").length > 0) {
FormCompleteScroll("#special-offer");
}
}
});
});
</script>
<!-- CJT Global Block (28) - Gravity Form Scroll - END -->
<link rel="icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" sizes="32x32" />
<link rel="icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" />
<meta name="msapplication-TileImage" content="https://www.roadsidedentalmarketing.com/wp-content/uploads/2019/10/rs-favicon.png" />
</head>
<body class="page-template-default page page-id-50844 page-parent page-child parent-pageid-17136 no-js et_divi_builder parent-page-17136 ancestor-page-44408 et_bloom et-pb-theme-mydivi-light et-db">
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header>
<div class="fullheader header">
<div class="mobile-footer">
<a href="tel:360-283-5001">
<i class="fa fa-phone" aria-hidden="true"></i>
<span>Call Us</span>
</a>
<a href="https://app.hubspot.com/meetings/angela330" target="_blank">
<i class="fa fa-calendar" aria-hidden="true"></i>
<span>Book a Call</span>
</a>
<a href="#gformpop18" class="popup-inline">
<i class="fa fa-envelope" aria-hidden="true"></i>
<span>Free Quote</span>
</a>
</div>
<div id="mobile-header">
<a id="responsive-menu-button" href="#sidr-main">
<i class="fa fa-bars" aria-hidden="true"></i>
<i class="fa fa-times" aria-hidden="true"></i>
<span class="sr-only">Open or Close Menu</span>
</a>
<a href="/" class="ga-logo">
<div class="rs-logo-svg">
<svg id="rsdm-logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 763.1 133.41">
<defs>
<linearGradient id="linear-gradient" x1="195.57" y1="87.62" x2="146.88" y2="164.85" gradientTransform="translate(-4 -55.7)" gradientUnits="userSpaceOnUse">
<stop offset="0.29" stop-color="#f26325"/>
<stop offset="1" stop-color="#ed2475"/>
</linearGradient>
</defs>
<path style="fill: #2F3646;" d="M78.3,142.7,49.6,94.2H26.8v48.6H4V12.7H61.2C87,12.7,104,29.3,104,53.5c0,23.1-15.2,35.7-31,38.2l32,51.2-26.7-.2Zm2.2-89.5c0-12.5-9.4-20.5-22.3-20.5H26.8V74H58.2c12.9.1,22.3-8.1,22.3-20.8" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M289.3,142.7V132.4c-7,8.2-18.1,12.7-30.6,12.7-15.2,0-32.5-10.6-32.5-31.2C226.2,92,243.4,83,258.7,83c12.9,0,23.7,4.1,30.6,12.1v-14c0-10.9-9.2-17.6-22-17.6a37.46,37.46,0,0,0-27.9,12.1l-8.6-14.2a56,56,0,0,1,39.6-15.3c21.1,0,39.4,8.8,39.4,34v62.6Zm0-21.4V106.8c-4.9-6.4-13.6-9.7-22.5-9.7-11.5,0-20.3,6.9-20.3,17s8.8,17.1,20.4,17.1c8.8,0,17.5-3.3,22.5-9.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M394.9,142.7V129.8a38.22,38.22,0,0,1-30.3,15.3c-23.9,0-41.7-18.4-41.7-49.6,0-30.4,17.5-49.3,41.7-49.3a36.8,36.8,0,0,1,30.3,15.4V12.7h20.5V142.9l-20.5-.2Zm0-28.4V77.1a30.6,30.6,0,0,0-24.2-12.7c-16.4,0-26.7,13.1-26.7,31.2S354.3,127,370.7,127a30.19,30.19,0,0,0,24.2-12.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M430,130.3l9.4-14.6a48.55,48.55,0,0,0,31.8,13.1c12.3,0,18.6-5,18.6-12.5,0-18.6-57-5.3-57-41.5,0-15.4,13.3-28.5,37.2-28.5a53.6,53.6,0,0,1,36.5,13.1L498,73.7a38.34,38.34,0,0,0-27.9-11.3c-10.6,0-17.3,5-17.3,11.7,0,16.6,57,4.1,57,41.5,0,16.8-13.9,29.5-39.2,29.5-16.2.1-30.7-5.2-40.6-14.8" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M523.8,24.4a12.7,12.7,0,1,1,25.4,0A12.48,12.48,0,0,1,536.6,37h-.1a12.76,12.76,0,0,1-12.7-12.6h0m2.4,24.2h20.5v94.3H526.2Z" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M635.7,142.7V129.8a38.22,38.22,0,0,1-30.3,15.3c-23.9,0-41.8-18.4-41.8-49.6,0-30.4,17.6-49.3,41.8-49.3a36.93,36.93,0,0,1,30.3,15.4V12.7h20.5V142.9l-20.5-.2Zm0-28.4V77.1a30.6,30.6,0,0,0-24.2-12.7c-16.4,0-26.7,13.1-26.7,31.2S595.1,127,611.5,127a30,30,0,0,0,24.2-12.7" transform="translate(-4 -11.7)"/>
<path style="fill: #2F3646;" d="M673.1,95.6c0-27.3,19.9-49.3,47.8-49.3,28.3,0,46.2,21.5,46.2,51.2v5H694.4c1.6,14,12.1,25.9,29.9,25.9a39.89,39.89,0,0,0,27-10.6l9.4,13.4a56,56,0,0,1-38.2,13.9c-28.6,0-49.4-19.8-49.4-49.5m47.6-32.7c-17.3,0-25.6,13.4-26.4,24.8h53.1a25.38,25.38,0,0,0-26-24.8c-.2-.1-.3,0-.7,0" transform="translate(-4 -11.7)"/>
<g id="check-logo">
<circle id="circle" class="cls-2" cx="159.3" style="fill:url(#linear-gradient);" cy="83.1" r="50.3"></circle>
<path id="check" class="cls-3" d="M200.4,60.9l-36,35.6-16-16.3a5.44,5.44,0,0,0-7.5,0l-7.5,7.5a5.44,5.44,0,0,0,0,7.5L153.2,115l7.5,7.5a5.14,5.14,0,0,0,3.7,1.5,4.76,4.76,0,0,0,3.7-1.5l7.5-7.5,35.6-35.5C209.5,73.1,204.6,65.4,200.4,60.9Z" transform="translate(-4 -11.7)" style="fill: #fff;"></path>
</g>
</svg>
</div>
</a>
</div>
<div class="above-nav-wrap">
<a href="/" class="logo-link rsdm-logo">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/88150/rsdm-logo_copy.svg" data-alt-src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/88150/rsdm-home-logo-animated-new.svg" loading="lazy">
</a>
<div class="cta-wrap">
<a href="tel:360-283-5001" onclick="gtag_report_conversion" class="nav-phone ga-phone-header" id="call-us-cta">
<svg version="1.1" id="phone-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
.st0{display:none;}
.st1{display:inline;fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{display:inline;fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{fill:none;stroke:#EB4053;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<g class="st0">
<path class="csvg st1" d="M67.6,25.5c-4.7-4.9-11.3-7.9-18.6-7.8c-6.5,0.1-12.3,2.6-16.7,6.6c-0.6,0.6-1.2,1.1-1.8,1.8
c-4.1,4.5-6.5,10.6-6.4,17.1c0,2.2,0.3,4.3,0.9,6.3c0.6,2.4,1.6,4.6,2.9,6.6c0,0,0,0,0,0c0,0,0,0,0,0c2.8,5.3,8.7,7.9,9.4,17.9
c0,0.3,0,0.5,0,0.8c0,0.3,0,0.6,0,0.9l0,0.3l12.3-0.2l12.3-0.2c0,0,0-1.3,0-1.8c0.5-10.1,6.3-12.8,9-18.2c0,0,0,0,0,0c0,0,0,0,0,0
c2.2-3.8,3.5-8.3,3.5-13.1C74.5,36,71.9,30,67.6,25.5z"/>
<path class="csvg st2" d="M37.5,75.8l0.1,7.5c0,1.9,1.6,3.4,3.4,3.3l17.8-0.2c1.9,0,3.4-1.6,3.4-3.4l-0.1-7.2"/>
<path class="csvg st1" d="M42.3,86.6c0.1,4.2,3.5,7.6,7.7,7.6c4.2-0.1,7.6-3.5,7.6-7.8"/>
<line class="csvg st2" x1="49" y1="10.9" x2="48.9" y2="5.9"/>
<line class="csvg st2" x1="33.1" y1="15.4" x2="30.6" y2="11.1"/>
<line class="csvg st2" x1="21.6" y1="27.2" x2="17.2" y2="24.7"/>
<line class="csvg st2" x1="17.6" y1="43.1" x2="12.5" y2="43.2"/>
<line class="csvg st2" x1="22" y1="59" x2="17.7" y2="61.6"/>
<line class="csvg st2" x1="64.9" y1="15" x2="67.4" y2="10.6"/>
<line class="csvg st2" x1="76.7" y1="26.5" x2="81" y2="23.9"/>
<line class="csvg st2" x1="81.2" y1="42.3" x2="86.2" y2="42.3"/>
<line class="csvg st2" x1="77.1" y1="58.3" x2="81.5" y2="60.7"/>
<line class="csvg st2" x1="49.2" y1="31.3" x2="49.3" y2="35.7"/>
<line class="csvg st2" x1="49.5" y1="54" x2="49.6" y2="58.4"/>
<path class="csvg st2" d="M55.4,40.6c0-1.9-1.1-4.9-6.2-4.9"/>
<path class="csvg st2" d="M49.3,35.7c-5,0.1-5.9,2.5-5.8,4.5c0.1,5.8,12.6,2.6,12.6,8.9c0,2-1.1,4.9-6.1,4.9"/>
<path class="csvg st2" d="M50,54c-5.4,0.1-7.2-3.7-7.2-5.6"/>
</g>
<g>
<g>
<path class="csvg st3" d="M31.5,32.9l5.4-2.6c2.3-1.1,3.3-3.9,2.3-6.2L32.3,8.8c-1.2-2.6-4.4-3.6-6.8-2.1C12.7,14.5,6.3,17.9,7.4,25.3
c2.5,16.9,9.5,31.5,22.7,44.7c0,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.1,0.1C43.5,83.4,58.1,90.4,75,92.9c7.4,1.1,10.8-5.3,18.7-18.1
c1.5-2.4,0.5-5.7-2.1-6.8l-15.3-6.8c-2.3-1-5.1,0-6.2,2.3l-2.6,5.4"/>
<path class="csvg st3" d="M54.9,65.3c-3.1-2.1-6.7-5-10.7-9c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1-0.1c-5-5-8.3-9.4-10.5-13"/>
</g>
</g>
</svg>
<div class="cta-text">360.283.5001</div>
</a>
<a href="#gformpop18" id="free-quote-cta" class="popup-inline ga-raa-header">
<svg version="1.1" id="quote-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="181px" height="181px" viewBox="524.25 59.5 181 181" enable-background="new 524.25 59.5 181 181" xml:space="preserve">
<g>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M650.258,102.235c-9.145-9.534-21.985-15.37-36.188-15.176c-12.646,0.194-23.931,5.059-32.491,12.841
c-1.168,1.167-2.336,2.141-3.503,3.502c-7.977,8.755-12.646,20.623-12.452,33.271c0,4.28,0.585,8.366,1.752,12.256
c1.167,4.67,3.112,8.95,5.642,12.842l0,0l0,0c5.449,10.312,16.927,15.37,18.289,34.826c0,0.583,0,0.972,0,1.557
c0,0.583,0,1.167,0,1.75v0.584l23.931-0.39l23.931-0.388c0,0,0-2.53,0-3.503c0.974-19.651,12.258-24.904,17.512-35.41l0,0l0,0
c4.279-7.394,6.809-16.148,6.809-25.487C663.682,122.665,658.623,110.991,650.258,102.235z"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M591.695,200.099l0.194,14.593c0,3.696,3.113,6.614,6.614,6.42l34.632-0.388c3.697,0,6.615-3.113,6.615-6.616l-0.194-14.009"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M601.034,221.111c0.193,8.172,6.81,14.787,14.98,14.787c8.171-0.194,14.787-6.811,14.787-15.175"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="614.069" y1="73.83" x2="613.875" y2="64.102"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="583.134" y1="82.585" x2="578.27" y2="74.218"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="560.76" y1="105.543" x2="552.199" y2="100.679"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="552.977" y1="136.478" x2="543.055" y2="136.673"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="561.538" y1="167.413" x2="553.172" y2="172.473"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="645.004" y1="81.806" x2="649.868" y2="73.246"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="667.962" y1="104.182" x2="676.329" y2="99.122"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="676.717" y1="134.921" x2="686.445" y2="134.921"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="668.74" y1="166.052" x2="677.302" y2="170.721"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="614.458" y1="113.52" x2="614.653" y2="122.081"/>
<line class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="615.041" y1="157.685" x2="615.236" y2="166.247"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M626.521,131.614c0-3.696-2.141-9.533-12.063-9.533"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M614.653,122.081c-9.729,0.194-11.479,4.864-11.285,8.755c0.194,11.285,24.515,5.059,24.515,17.316
c0,3.891-2.141,9.533-11.868,9.533"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M616.015,157.685c-10.506,0.195-14.008-7.198-14.008-10.894"/>
</g>
<g display="none">
<g display="inline">
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M394.5,98.7l16.2-7.8c6.899-3.3,9.899-11.7,6.899-18.6L396.9,26.4c-3.601-7.8-13.2-10.8-20.4-6.3c-38.4,23.4-57.6,33.6-54.3,55.8
c7.5,50.7,28.5,94.5,68.1,134.1c0,0,0.3,0,0.3,0.3l0.3,0.3C430.5,250.2,474.3,271.2,525,278.7c22.2,3.3,32.4-15.9,56.1-54.3
c4.5-7.2,1.5-17.101-6.3-20.4L528.9,183.6c-6.9-3-15.301,0-18.601,6.9l-7.8,16.2"/>
<path class="csvg" fill="none" stroke="#EB4053" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="
M464.7,195.9c-9.3-6.301-20.101-15-32.101-27l-0.3-0.301c0,0-0.3,0-0.3-0.3c-15-15-24.9-28.2-31.5-39"/>
</g>
</g>
</svg>
<div class="cta-text">FREE QUOTE</div>
</a>
<a href="#" onclick="gtag_report_conversion" class="nav-login" id="login-us-cta" data-title="Client Login">
<svg id="avatar-icon" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91.84 83.87"><defs><style>.cls-1{fill:#eb4053;stroke:#eb4053;stroke-miterlimit:10;stroke-width:0.75px;}</style></defs><title>phone</title><path class="cls-1" d="M67.44,51.06a25.2,25.2,0,1,0-35.73,0C7,53.57,4,73.8,4,89.25a2,2,0,0,0,4,0C8,72.32,11.44,55,36.59,54.82a25.08,25.08,0,0,0,26,0c25.15.2,28.57,17.5,28.57,34.43a2,2,0,0,0,4,0C95.12,73.8,92.12,53.57,67.44,51.06Zm-39-17.75A21.13,21.13,0,1,1,49.57,54.44,21.15,21.15,0,0,1,28.44,33.31Z" transform="translate(-3.65 -7.75)"/><path class="cls-1" d="M26.44,91.25a2,2,0,0,1-2-2V80.09a2,2,0,0,1,4,0v9.16A2,2,0,0,1,26.44,91.25Z" transform="translate(-3.65 -7.75)"/><path class="cls-1" d="M72.7,91.25a2,2,0,0,1-2-2V80.09a2,2,0,0,1,4,0v9.16A2,2,0,0,1,72.7,91.25Z" transform="translate(-3.65 -7.75)"/></svg>
<span class="sr-only">Client Login</span>
</a>
</div>
</div>
<div class="header-wrap">
<a href="/" class="ga-logo">
<div class="rs-logo-svg">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="287.36" height="75.59" viewBox="0 0 287.36 75.59">
<path id="logo-tag-line" d="M281.37,75.59a5.6,5.6,0,0,0,4.15-1.77V70.08H281v1.21h3.13v2a4,4,0,0,1-2.71,1,4,4,0,1,1,2.95-6.7l1.13-.75a5.35,5.35,0,1,0-4.08,8.72m-9-.22V65.23H271V73L265,65.23h-1.51V75.37H265V67.48l6,7.89ZM258.36,65.23h-1.45V75.37h1.45Zm-8.49,10.14V66.5H253V65.23h-7.73V66.5h3.16v8.87Zm-8.43,0V74.1h-5.59V70.81h5.5V69.54h-5.5v-3h5.59V65.23h-7V75.37Zm-10.71,0L225.9,70l4.46-4.81h-1.81L224,70.3V65.23h-1.46V75.37H224V72l1-1.07,4,4.48Zm-16.06-5.2H211.9V66.5h2.77a1.84,1.84,0,1,1,0,3.67m3.61,5.2-2.87-4.06a2.82,2.82,0,0,0,2.74-3,3,3,0,0,0-3.35-3.1h-4.35V75.37h1.45v-4h2l2.66,4Zm-14.36-3.49h-4.3l2.16-5.14Zm-3-6.65-4.29,10.14h1.62l.94-2.21h5.18l.94,2.21h1.61l-4.28-10.14Zm-7.46,10.14V65.23h-2L188.19,73l-3.26-7.72h-2V75.37h1.45V67.18l3.49,8.19h.62L192,67.18v8.19Zm-21.41,0V74.1h-4.9V65.23h-1.46V75.37Zm-12.89-3.49h-4.29L157,66.74Zm-3-6.65-4.3,10.14h1.63l.94-2.21h5.18l.94,2.21h1.6l-4.28-10.14Zm-10.9,10.36a4.83,4.83,0,0,0,4-2.08l-1.18-.65a3.46,3.46,0,0,1-2.86,1.46,4,4,0,0,1,0-8,3.46,3.46,0,0,1,2.86,1.46l1.16-.65a4.72,4.72,0,0,0-4-2.08,5.29,5.29,0,1,0,0,10.58m-9.7-10.36H134.1V75.37h1.45ZM124.42,74.1h-2.23V66.5h2.23a3.8,3.8,0,1,1,0,7.6m0,1.27c3.32,0,5.4-2.18,5.4-5.05s-2.08-5.09-5.4-5.09h-3.69V75.37Zm-8.06,0V74.1h-5.58V70.81h5.49V69.54h-5.49v-3h5.58V65.23h-7V75.37Zm-11.84,0V65.23h-2L99.27,73,96,65.23H94V75.37h1.46V67.18L99,75.37h.62l3.49-8.19v8.19ZM78.59,67.7A1.38,1.38,0,0,1,80,66.26a1.07,1.07,0,0,1,1.16,1.12c0,1-.89,1.5-1.94,2a3.62,3.62,0,0,1-.59-1.7m.62,6.93a1.87,1.87,0,0,1-2-1.89,2.46,2.46,0,0,1,1.46-2.12,16.54,16.54,0,0,0,1.22,1.56c.28.34.8.89,1.36,1.48a2.83,2.83,0,0,1-2.05,1m5.31.74c-.72-.66-1.32-1.25-1.91-1.86A13,13,0,0,0,84,71L83,70.56A10.13,10.13,0,0,1,82,72.81c-.39-.41-.77-.84-1.16-1.31s-.76-.87-1.15-1.4c1.25-.65,2.5-1.29,2.5-2.76a2,2,0,0,0-2.21-1.93,2.32,2.32,0,0,0-2.47,2.26,4.59,4.59,0,0,0,.75,2.21c-1.13.62-2.16,1.4-2.16,2.93,0,1.81,1.37,2.73,3,2.73a3.86,3.86,0,0,0,2.83-1.2c.39.4.78.78,1.07,1Zm-17.81,0V74.1H61.8V65.23H60.35V75.37ZM54.19,71.88h-4.3l2.16-5.14Zm-3-6.65-4.3,10.14h1.62l.94-2.21h5.18l.94,2.21h1.61L52.9,65.23Zm-9.3,10.14V66.5H45V65.23H37.3V66.5h3.15v8.87Zm-8.48,0V65.23H32V73L26,65.23H24.53V75.37H26V67.48l6,7.89Zm-13.25,0V74.1H14.57V70.81h5.49V69.54H14.57v-3h5.59V65.23h-7V75.37Zm-16-1.27H1.94V66.5H4.17a3.8,3.8,0,1,1,0,7.6m0,1.27c3.32,0,5.4-2.18,5.4-5.05s-2.08-5.09-5.4-5.09H.48V75.37Z" style="fill:#353535"/>
<path d="M28,49.37,17.19,31.08H8.6V49.37H0V.37H21.53c9.7,0,16.09,6.24,16.09,15.35,0,8.67-5.73,13.45-11.68,14.4L38,49.37Zm.81-33.72c0-4.7-3.53-7.71-8.38-7.71H8.6V23.51H20.42c4.85,0,8.38-3.08,8.38-7.86" style="fill:#363636"/>
<path d="M107.42,49.37V45.48c-2.64,3.09-6.83,4.78-11.54,4.78-5.73,0-12.26-4-12.26-11.76,0-8.23,6.46-11.61,12.26-11.61,4.85,0,8.9,1.54,11.54,4.56V26.16c0-4.12-3.45-6.62-8.3-6.62A14.2,14.2,0,0,0,88.61,24.1l-3.23-5.36A20.78,20.78,0,0,1,100.29,13c7.94,0,14.84,3.31,14.84,12.79V49.37Zm0-8.08V35.85c-1.84-2.42-5.14-3.67-8.45-3.67-4.33,0-7.64,2.57-7.64,6.39S94.64,45,99,45c3.31,0,6.61-1.24,8.45-3.67" style="fill:#363636"/>
<path d="M147.17,49.37V44.52a14.27,14.27,0,0,1-11.39,5.74c-9,0-15.72-6.91-15.72-18.67,0-11.46,6.61-18.59,15.72-18.59a13.85,13.85,0,0,1,11.39,5.81V.37h7.71v49Zm0-10.72v-14a11.52,11.52,0,0,0-9.11-4.77c-6.17,0-10.07,4.92-10.07,11.75s3.9,11.83,10.07,11.83a11.52,11.52,0,0,0,9.11-4.77" style="fill:#363636"/>
<path d="M160.39,44.67l3.53-5.51a18.24,18.24,0,0,0,12,4.92c4.63,0,7-1.91,7-4.7,0-7-21.45-2-21.45-15.65,0-5.8,5-10.73,14-10.73a20.3,20.3,0,0,1,13.74,4.93L186,23.36a14.46,14.46,0,0,0-10.5-4.26c-4,0-6.54,1.91-6.54,4.41,0,6.25,21.45,1.54,21.45,15.65,0,6.32-5.22,11.1-14.77,11.1-6.09,0-11.53-2-15.21-5.59" style="fill:#363636"/>
<path d="M195.74,4.78a4.78,4.78,0,1,1,4.77,4.77,4.77,4.77,0,0,1-4.77-4.77m.88,9.11h7.71V49.37h-7.71Z" style="fill:#363636"/>
<path d="M237.84,49.37V44.52a14.27,14.27,0,0,1-11.39,5.74c-9,0-15.73-6.91-15.73-18.67,0-11.46,6.62-18.59,15.73-18.59a13.86,13.86,0,0,1,11.39,5.81V.37h7.71v49Zm0-10.72v-14a11.54,11.54,0,0,0-9.12-4.77c-6.17,0-10.06,4.92-10.06,11.75s3.89,11.83,10.06,11.83a11.54,11.54,0,0,0,9.12-4.77" style="fill:#363636"/>
<path d="M251.94,31.59c0-10.28,7.5-18.59,18-18.59,10.66,0,17.42,8.09,17.42,19.25v1.91H260c.58,5.3,4.55,9.78,11.24,9.78a15,15,0,0,0,10.14-4L284.93,45a21,21,0,0,1-14.4,5.22c-10.72,0-18.59-7.43-18.59-18.67m17.93-12.27c-6.54,0-9.62,5.07-9.92,9.33h20a9.56,9.56,0,0,0-10.07-9.33" style="fill:#363636"/>
<path d="M64.24,39.93l-2.8,2.81a2,2,0,0,1-1.41.57,2,2,0,0,1-1.4-.57l-2.8-2.81-7.46-7.46a2,2,0,0,1,0-2.8l2.8-2.8a2,2,0,0,1,2.8,0L60,33,73.64,19.49a18.06,18.06,0,0,0-14-6C48.06,13.49,41,22.06,41,32.5s7.06,19.09,18.64,19.09S78.27,42.87,78.27,32.5a21.6,21.6,0,0,0-.78-5.8Z" class="check"/>
</svg>
</div>
</a>
<div class="nav-wrap">
<a href="/" class="check-logo">
<svg version="1.1" id="svg-logo-scroll-wrap" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="41.176px" height="42.103px" viewBox="281.275 14.395 41.176 42.103" enable-background="new 281.275 14.395 41.176 42.103" xml:space="preserve">
<defs>
<linearGradient id="logo-scroll-gradient" gradientUnits="userSpaceOnUse" x1="-1323.5376" y1="1676.0269" x2="-1322.5383" y2="1676.0269" gradientTransform="matrix(69.3694 -25.9362 -25.9362 -69.3694 135552.7031 81984.8359)">
<stop offset="0" style="stop-color:#EC2475"></stop>
<stop offset="1" style="stop-color:#F16522"></stop>
</linearGradient>
</defs>
<path id="svg-logo-scroll" d="M281.275,35.4c0,11.465,7.799,21.098,20.588,21.098c12.79,0,20.588-9.633,20.588-21.098 c0-2.163-0.289-4.314-0.858-6.402L306.941,43.65l-3.099,3.055c-0.852,0.853-2.232,0.853-3.084,0l-3.099-3.055l-8.25-8.279 c-0.853-0.856-0.853-2.242,0-3.099l3.099-3.099c0.857-0.854,2.242-0.854,3.099,0l6.693,6.722l15.03-14.87 c-3.927-4.379-9.587-6.802-15.467-6.621C289.074,14.404,281.275,23.862,281.275,35.4" fill="url(#logo-scroll-gradient)"></path>
</svg>
</a>
<ul id="menu-primary-1" class="rs-nav"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-44249"><a href="https://www.roadsidedentalmarketing.com/services/websites/" class="menu-image-title-after"><span class="menu-image-title">Websites</span></a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40642"><a href="https://www.roadsidedentalmarketing.com/services/websites/dental/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/website-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Dental Websites</span></a></li>
<li id="menu-item-52489" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-52489"><a href="https://www.roadsidedentalmarketing.com/services/websites/medical/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/website-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Medical Websites</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42104"><a href="https://www.roadsidedentalmarketing.com/portfolio/case-studies/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/case-studies-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Case Studies</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44255"><a href="https://www.roadsidedentalmarketing.com/website-pricing/" class="menu-image-title-after"><div data-bg='https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/dental-website-pricing-icon.svg' class='lazy menu-image menu-image-title-after' ></div><span class="menu-image-title">Website Pricing Options</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41546"><a href="https://www.roadsidedentalmarketing.com/portfolio/" class="menu-image-title-after"><span class="menu-image-title">Portfolio</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40588"><a href="https://www.roadsidedentalmarketing.com/services/marketing/" class="menu-image-title-after"><span class="menu-image-title">Marketing</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31786"><a href="https://www.roadsidedentalmarketing.com/meet-the-team/" class="menu-image-title-after"><span class="menu-image-title">Meet Us</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-4886"><a href="https://www.roadsidedentalmarketing.com/blog/" class="menu-image-title-after"><span class="menu-image-title">Blog</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17143"><a href="https://www.roadsidedentalmarketing.com/contact/" class="menu-image-title-after"><span class="menu-image-title">Contact</span></a></li>
<li class="pink-text menu-item menu-item-type-post_type menu-item-object-page menu-item-51369"><a target="_blank" rel="noopener" href="https://www.roadsidedentalmarketing.com/services/marketing/weekly-coach/" class="menu-image-title-after"><span class="menu-image-title">Weekly Coach</span></a></li>
</ul>
</div>
</div>
</div>
<div class="header-spacer"></div>
<div class="inline-text-popup et_pb_inline_text_popup_0 mfp-hide" id="covid-19-resources">
<div class="popup-heading">COVID-19 Resources</div>
<p>Our entire team is sending positivity your way and a virtual hug (or elbow bump!) during these uncertain and stressful times.</p>
<p>As a small business ourselves, we want to do all we can to support other businesses that will be affected in the days ahead.</p>
<p>We’ve put together tips, ideas, and resources to help your business create positivity, reassurance, and value for your communities.</p>
<p><strong>First and above all, we want to help you help others.</strong>❤️</p>
<p>Check back regularly, as we’re updating our resources frequently.</p>
<ul>
<li><a href="https://www.roadsidedentalmarketing.com/blog/covid-resources-for-dental/" rel="nofollow noreferrer noopener">Roadside COVID-19 Resources</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/blog/thrive-after-reopening/" rel="nofollow noreferrer noopener">Helping Your Dental Practice Thrive Before + After Reopening [VIDEO]</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/blog/adapt-website-content/" rel="nofollow noreferrer noopener">Adapt Your Website Content to Meet Patients’ Changing Needs</a></li>
<li><a href="https://www.roadsidedentalmarketing.com/promo/teledentistry/" rel="nofollow noreferrer noopener">Teledentistry / Virtual Consultations</a></li>
</ul>
</div> </header> <!-- .nav-container -->
<div class="site-content">
<div class="content-area">
<main id="main" class="site-main">
<section class="block">
<div class="container">
<div id="et-boc" class="et-boc">
<div id="et_builder_outer_content" class="et_builder_outer_content">
<div class="et-l et-l--post">
<div class="et_builder_inner_content et_pb_gutters3">
<div class="et_pb_section et_pb_section_0 band-light et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_0">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_image et_pb_image_0">
<a href="https://www.roadsidedentalmarketing.com/"><span class="et_pb_image_wrap "><img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/04/roadside-dental-marketing-logo-gradient.svg" alt="" title="" class="wp-image-44852" /></span></a>
</div><div class="et_pb_mydivi_headings hero-alt-initial-case et_pb_mydivi_headings_0" >
<div class="heading-hero-alt et_pb_text_align_center" style=" margin-bottom:0px;"> Never wonder what to post on social media EVER again. </div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_1 row-mw-1200">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough">
<div class="video-image-preview-wrap et_pb_video_popup et_pb_video_popup_0" >
<a class="video-image-preview mfp-iframe video-link gb-video " data-mfp-src="https://youtube.com/watch?v=7A_OGD6AIBc" data-start="">
<img data-src="https://www.roadsidedentalmarketing.com/wp-content/uploads/weekly-coach-video-thumbnail.jpg" alt="Weekly Coach: Social Media Content + Resources for Dental Practices" class="lazy" loading="lazy">
<span class="video-overlay-indicator">
<span class="fa-stack">
<i class="fa fa-play fa-stack-1x" aria-hidden="true"></i>
<span class="sr-only">Click to play movie</span>
</span>
</span>
</a>
<p style="text-align: center; padding: 0; margin: 20px 0 0 0;"><em></em></p>
</div>
<div class="et_pb_with_border et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-secondary">Weekly Coach gives you grab-and-go social posts and fresh marketing ideas every week.</p>
<p class="heading-tertiary" style="line-height: inherit;">Special pricing: <u class="highlight"><b>$27 / mo.</b></u> <i>(normally $97 / mo.)</i></p></div>
</div> <!-- .et_pb_text --><div class="btn-content-standard et_pb_button_standard_0" style="text-align: left">
<a href="http://roadsidedentalmarketing.com/services/marketing/weekly-coach/order" target="_self" class=" btn-standard medium solid-style-accentb solid-style-hv-accentb ">
<span>Sign Up for Weekly Coach</span>
</a>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="lazy-load-youtube-inline et_pb_lazy_load_youtube_inline_0 " id="">
<div class="youtube">
<iframe frameborder="0" allowfullscreen="" src="https://www.youtube.com/embed/7A_OGD6AIBc?rel=0&showinfo=0&mute=1&autoplay=1&cc_load_policy=1" title="Youtube Video"></iframe>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_1 band-light-alt et_pb_section_parallax et_pb_with_background et_section_regular et_section_transparent" >
<div class="et_parallax_bg_wrap"><div
class="et_parallax_bg"
style="background-image: url(https://www.roadsidedentalmarketing.com/wp-content/uploads/roadside-dental-marketing-textures3-min.png);"
></div></div>
<div class="et_pb_row et_pb_row_2">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings hero-alt-initial-case et_pb_mydivi_headings_1" >
<div class="heading-primary et_pb_text_align_center" style=" margin-bottom:0px;"> Does this sound familiar: </div>
</div>
<div class="quote-bubbles-wrap ">
<ul class="quote-bubbles et_pb_bubble_testimonial_0 et_animated">
<li>
<div class="qte-img-content">
"I’ll never have time for marketing or social media. I have a dental practice to run!"
</div>
<span>
<svg version="1.1" class="speech-arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 49.8 49.8" style="enable-background:new 0 0 49.8 49.8;" xml:space="preserve">
<path class="l-arrow" d="M46-1.9L6,43.7V-1.9"/>
<path class="r-arrow" d="M44-1.9v45.6L4-1.9"/>
</svg>
</span>
</li>
<li>
<div class="qte-img-content">
"The hardest thing about social media is thinking of ideas."
</div>
<span>
<svg version="1.1" class="speech-arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 49.8 49.8" style="enable-background:new 0 0 49.8 49.8;" xml:space="preserve">
<path class="l-arrow" d="M46-1.9L6,43.7V-1.9"/>
<path class="r-arrow" d="M44-1.9v45.6L4-1.9"/>
</svg>
</span>
</li>
<li>
<div class="qte-img-content">
"I can’t afford to invest in a marketing agency or hire a social media manager."
</div>
<span>
<svg version="1.1" class="speech-arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 49.8 49.8" style="enable-background:new 0 0 49.8 49.8;" xml:space="preserve">
<path class="l-arrow" d="M46-1.9L6,43.7V-1.9"/>
<path class="r-arrow" d="M44-1.9v45.6L4-1.9"/>
</svg>
</span>
</li>
<li>
<div class="qte-img-content">
"I have no idea how to leverage social media for my dental practice."
</div>
<span>
<svg version="1.1" class="speech-arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 49.8 49.8" style="enable-background:new 0 0 49.8 49.8;" xml:space="preserve">
<path class="l-arrow" d="M46-1.9L6,43.7V-1.9"/>
<path class="r-arrow" d="M44-1.9v45.6L4-1.9"/>
</svg>
</span>
</li>
</ul>
</div><div class="et_pb_mydivi_headings et_pb_mydivi_headings_2" >
<div class="heading-secondary et_pb_text_align_center" style=" margin-bottom:0px;"> The struggle is real! And we get it. </div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_2 band-light et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_3">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_3" >
<h2 class="heading-primary et_pb_text_align_center" style=" margin-bottom:10px;"> You can simplify your marketing </h2>
<div class="heading-tertiary et_pb_text_align_center" ><span>Weekly Coach saves you time and creative headaches by delivering easy marketing tips and ready-to-go posts right into your inbox every week. <b>It includes:</b></span></div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_4">
<div class="et_pb_column et_pb_column_1_3 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough">
<div class="img-standard center no-style et_pb_image_standard_0 ">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/roadside-dental-marketing-weekly-coach-grab-and-go-social-posts.png" alt="Grab and go social posts from your Weekly Coach" title="Get your grab-and-go social posts from your Weekly Coach" loading="lazy">
</div><div class="et_pb_module et_pb_text et_pb_text_1 et_pb_text_align_center et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-tertiary"><b>Grab-and-go social posts</b></p>
<p>Turn social media into an easy task of plug-and-play with 5 weekly posts and videos.</p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_3 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough">
<div class="img-standard center no-style et_pb_image_standard_1 ">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/roadside-dental-marketing-weekly-coach-sample-captions.png" alt="Sample captions from your Weekly Coach" title="Get your sample captions from your Weekly Coach" loading="lazy">
</div><div class="et_pb_module et_pb_text et_pb_text_2 et_pb_text_align_center et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-tertiary"><b>Sample captions</b></p>
<p>Beat writer’s block with sample captions to post directly to your social accounts.</p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_3 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="img-standard center no-style et_pb_image_standard_2 ">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/roadside-dental-marketing-weekly-coach-timely-marketing-tips.png" alt="Timely marketing tips from your Weekly Coach" title="See more timely marketing tips from your Weekly Coach" loading="lazy">
</div><div class="et_pb_module et_pb_text et_pb_text_3 et_pb_text_align_center et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-tertiary"><b>Timely marketing tips</b></p>
<p>Boost your online presence and connect with your community with weekly tips proven to work.</p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_3 band-dark hexagon-overlay-parallax et_pb_section_parallax et_pb_with_background et_section_regular et_section_transparent" >
<div class="et_parallax_bg_wrap"><div
class="et_parallax_bg et_pb_parallax_css"
style="background-image: url(https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/dark-pattern.svg);"
></div></div>
<div class="et_pb_row et_pb_row_5">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_8 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="one-third-img-hldr et_pb_one_third_image_w_text_0 ">
<div class="img-wrap">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Vicki-Fidler-dds-Seattle-Dentist-portrait-min.jpg" alt="Dr. Vicki Fidler talking about her dental website">
</div>
<div class="text-wrap">
<h3 class="heading-secondary">Skeptic turned into a marketing believer:</h3>
<p>“I admit I was skeptical, I did not think I had time to implement marketing in my busy day. <strong>Weekly Coach is much more than I expected.</strong> The easy-to-use and attractive graphics and the coaching on improving customer service is beyond what I expected. My team is on ME now about marketing, and <b>the patients love the interaction.</b>”</p>
<p><b>Dr. Vicki Fidler, Actual Client</b><br />
<a href="https://www.fidleronthetooth.com/" target="_blank" rel="noopener noreferrer">Fidler on the Tooth <span class="sr-only">… Opens in a new window to Dr. Fidler’s website</span></a> | Seattle, WA
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_4 band-light et_pb_section_parallax et_pb_with_background et_section_regular et_section_transparent" >
<div class="et_parallax_bg_wrap"><div
class="et_parallax_bg"
style="background-image: url(https://www.roadsidedentalmarketing.com/wp-content/uploads/roadside-dental-marketing-textures3-min.png);"
></div></div>
<div class="et_pb_row et_pb_row_6">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_9 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_4" >
<div class="heading-primary et_pb_text_align_center" style=" margin-bottom:20px;"> If you're running a dental practice and are: </div>
</div>
<div class="falist et_pb_text_align_center et_pb_fa_list_0 et_pb_fa_list center-list " >
<ul>
<li class="color-primary color-accenta-icon">
<i class="off fal fa-check" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;"><p class="heading-tertiary"><b>Exhausted</b> from balancing marketing with your super busy schedule</p></div>
</li><li class="color-primary color-accenta-icon">
<i class=" fal fa-check" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;"><p class="heading-tertiary"><b>Frustrated</b> with getting virtual silence on social media</p></div>
</li><li class="color-primary color-accenta-icon">
<i class=" fal fa-check" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;"><p class="heading-tertiary"><b>Unsure</b> what to post and need to get the creative juices flowing</p></div>
</li><li class="color-primary color-accenta-icon">
<i class=" fal fa-check" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;"><p class="heading-tertiary"><b>Ready</b> to step up your social game</p></div>
</li><li class="color-primary color-accenta-icon">
<i class=" fal fa-check" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;"><p class="heading-tertiary"><b>Wanting</b> to pass the marketing baton to your team</p></div>
</li>
</ul>
</div>
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_5" >
<div class="heading-secondary et_pb_text_align_center" style=" margin-bottom:20px;"> Weekly Coach will make marketing as easy as brushing + flossing your teeth </div>
</div>
<div class="btn-content-standard et_pb_button_standard_1" style="text-align: center">
<a href="http://roadsidedentalmarketing.com/services/marketing/weekly-coach/order" target="_self" class=" btn-standard medium solid-style-accentb solid-style-hv-accentb ">
<span>Sign Up for only $27 / mo.</span>
</a>
</div><div class="et_pb_module et_pb_text et_pb_text_4 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p style="text-align: center;"><i>P.S. Don’t miss out! Special pricing only available to the first 50 people who sign up.</i></p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_5 band-light-alt et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_7">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_10 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_6" >
<h2 class="heading-primary et_pb_text_align_center" style=" margin-bottom:0px;"> Connect with your dream patients </h2>
<div class="heading-tertiary et_pb_text_align_center" ><span>You’ll get the proven strategies + quick tips to get it done fast every week.</span></div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_8">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_11 et_pb_css_mix_blend_mode_passthrough">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_0 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-1.svg" alt="Icon of a gear">
</div>
<div class="blurb-container">
<div class="heading-secondary">Easy-peasy tools + resources</div>
<div class="blurb-subheading">Don’t start from scratch with planning and writing social posts. Weekly Coach will hand you quick tips and resources to market your practice quickly and effectively.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_12 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_1 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-2.svg" alt="Icon of a line graph">
</div>
<div class="blurb-container">
<div class="heading-secondary">Grow your following + patients</div>
<div class="blurb-subheading">Everything delivered to you is designed to improve your social media following, breathe life into your marketing, and ultimately engage with potential patients.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_9">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_13 et_pb_css_mix_blend_mode_passthrough">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_2 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-3.svg" alt="Icon of a new phone">
</div>
<div class="blurb-container">
<div class="heading-secondary">Look fresh + legit</div>
<div class="blurb-subheading">Continuously keep your social media active with grab-and-go posts and captions.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_14 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_3 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-4.svg" alt="Icon of a marketing strategy paper">
</div>
<div class="blurb-container">
<div class="heading-secondary">Tips + strategies proven to work</div>
<div class="blurb-subheading">Receive weekly marketing tips and resources to boost your online presence while building relationships with your community.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_10">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_15 et_pb_css_mix_blend_mode_passthrough">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_4 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-5.svg" alt="Icon of a pen and paper">
</div>
<div class="blurb-container">
<div class="heading-secondary">Beat writer’s block</div>
<div class="blurb-subheading">Never again will you have to spend hours planning, posting, and writing your social posts. You’ll get captions to personalize to your office and engage with your patients.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_16 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_5 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/lead-magnet-web-icons-6.svg" alt="Icon of a mindmap">
</div>
<div class="blurb-container">
<div class="heading-secondary">Increase ROI</div>
<div class="blurb-subheading">Score credibility points with potential patients, making them go, “Oooooo, this person is amazing. Please, please be my dentist!”</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_11">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_17 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_text et_pb_text_5 et_pb_text_align_center et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-tertiary" style="line-height:1.5;">Grab our special pricing of <u class="highlight"><b>$27 / mo.</b></u> <i>(normally $97 / mo.)</i></p>
<p><i>Only available to the first 50 people.</i></p></div>
</div> <!-- .et_pb_text --><div class="btn-content-standard et_pb_button_standard_2" style="text-align: center">
<a href="http://roadsidedentalmarketing.com/services/marketing/weekly-coach/order" target="_self" class=" btn-standard medium solid-style-accentb solid-style-hv-accentb ">
<span>Sign Up for Weekly Coach</span>
</a>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_6 band-dark hexagon-overlay-parallax et_pb_section_parallax et_pb_with_background et_section_regular et_section_transparent" >
<div class="et_parallax_bg_wrap"><div
class="et_parallax_bg et_pb_parallax_css"
style="background-image: url(https://www.roadsidedentalmarketing.com/wp-content/uploads/2020/03/dark-pattern.svg);"
></div></div>
<div class="et_pb_row et_pb_row_12">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_18 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="one-third-img-hldr et_pb_one_third_image_w_text_1 ">
<div class="img-wrap">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Marcy-Robert-Walker-DDS.jpg" alt="Marcy talking about her office's website">
</div>
<div class="text-wrap">
<h3 class="heading-secondary">She finally beat writer’s block!</h3>
<p>“Ever since we started using Weekly Coach, it has made all our postings on social media and the blog so simple! <b>I don’t even have to think about what we are going to post now.</b> It is so easy, the hardest thing about social is thinking of ideas. This service is just incredible, and the coaching is priceless. The doctor and I just can’t say enough about it!”</p>
<p><b>Marcy, Office Manager</b><br />
<a href="https://www.rwalkerdds.com/" target="_blank" rel="noopener noreferrer">Robert F. Walker Jr., DDS <span class="sr-only">… Opens in a new window to Marcy’s website</span></a> | Chandler, AZ
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_7 band-light-alt et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_13">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_19 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_7" >
<div class="heading-primary et_pb_text_align_center" style=" margin-bottom:0px;"> Let’s break down what you’re getting every week: </div>
<div class="heading-tertiary et_pb_text_align_center" ><span><i>(For only $27 / mo.!)</i></span></div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_14">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_20 et_pb_css_mix_blend_mode_passthrough">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_6 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Social-Media-Icons-1.svg" alt="Icon of the Facebook and Instagram logos">
</div>
<div class="blurb-container">
<div class="heading-tertiary">Five ready-made social post images or videos to post directly on your social media accounts.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_21 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_7 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Marketing-Resources-Icons-1.svg" alt="Icon of a gear and pencil">
</div>
<div class="blurb-container">
<div class="heading-tertiary">Marketing resources and education on SEO, website design, gaining reviews, Google updates, and more!</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_15">
<div class="et_pb_column et_pb_column_1_2 et_pb_column_22 et_pb_css_mix_blend_mode_passthrough">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_8 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Tip-of-the-Week-Icon-1.svg" alt="Icon of a calendar">
</div>
<div class="blurb-container">
<div class="heading-tertiary">A marketing tip of the week to quickly implement into your practice</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_2 et_pb_column_23 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="cta-blurb-wrapper-2 et_pb_blurb_standard_new_9 " >
<div class="blurb-content">
<div class="blurb-image">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/Captions-Icons-1.svg" alt="Icon of a pencil">
</div>
<div class="blurb-container">
<div class="heading-tertiary">A caption template for each social post.</div>
</div>
</div>
</div>
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_8 band-light et_pb_section_parallax et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_16">
<div class="et_pb_column et_pb_column_4_4 et_pb_column_24 et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_module et_pb_text et_pb_text_6 et_pb_text_align_center et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p class="heading-secondary">And… you’re also getting these fab bonuses!</p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row --><div class="et_pb_row et_pb_row_17 et_pb_equal_columns et_pb_gutters1">
<div class="et_pb_column et_pb_column_1_3 et_pb_column_25 includes-column ic-personalized et_pb_css_mix_blend_mode_passthrough">
<div class="img-standard center et_pb_image_standard_3 ">
<img src="https://www.roadsidedentalmarketing.com/wp-content/uploads/marketing-pro-icon.svg" alt="Preview of the monthly Marketing pro" title="Get the Monthly Marketing Pro for free!" style="width:100%;max-width:80%;" loading="lazy">
</div>
</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_2_3 et_pb_column_26 pricing-content-column personalized-bullets et_pb_css_mix_blend_mode_passthrough et-last-child">
<div class="et_pb_mydivi_headings et_pb_mydivi_headings_8" >
<h2 class="heading-primary et_pb_text_align_left" style=" margin-bottom:0px;"> <b>BONUS:</b> Monthly Marketing Pro </h2>
<div class="heading-tertiary et_pb_text_align_" style="color:#ed5127;"
><span>Stay on top of the latest marketing trends.</span></div>
</div>
<div class="et_pb_module et_pb_text et_pb_text_7 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p><span style="font-weight: 400;">Monthly Marketing Pro gives you VIP access to insightful and robust marketing education every month so you know exactly what works to grow your dental practice.</p></div>
</div> <!-- .et_pb_text --><div class="falist et_pb_text_align_left et_pb_fa_list_1 et_pb_fa_list " >
<ul>
<li class="color-primary color-primary-icon">
<i class="off fa fa-check" style="font-size: 18px;" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;">Time-sensitive information to implement every month so <b>you’re staying ahead</b> of the marketing game (and crushing your competition).</div>
</li><li class="color-primary color-primary-icon">
<i class="off fa fa-check" style="font-size: 18px;" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;">Become a marketing pro <b>without having to invest thousands of dollars</b> on a marketing agency.</div>
</li><li class="color-primary color-primary-icon">
<i class="off fa fa-check" style="font-size: 18px;" aria-hidden="true"></i>
<div class="list__wrap" style="margin-left:30px;margin-bottom: 10px;">Silence the noise of figuring out what works and doesn’t work for marketing. <b>We’ve figured that out for you.</b></div>
</li>
</ul>
</div>
<div class="et_pb_module et_pb_text et_pb_text_8 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner"><p><u class="highlight-2"><b>($97 / mo. Value)</b></u> <b>Included with Weekly Coach</b></p></div>
</div> <!-- .et_pb_text -->
</div> <!-- .et_pb_column -->
</div> <!-- .et_pb_row -->
</div> <!-- .et_pb_section --><div class="et_pb_section et_pb_section_9 band-light coach-blurbs et_section_regular et_section_transparent" >
<div class="et_pb_row et_pb_row_18">