-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackup.html
More file actions
executable file
·2347 lines (2106 loc) · 136 KB
/
Copy pathBackup.html
File metadata and controls
executable file
·2347 lines (2106 loc) · 136 KB
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>
<head>
<meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'/>
<link href='https://www.seattlerealestatephoto.com/' rel='canonical'/>
<meta content='en_US' property='og:locale'/>
<meta content='website' property='og:type'/>
<meta content='en-gb' http-equiv='content-language'/>
<meta content='Real Estate Photographer | Alex Bucse serving King County and More' property='og:title'/>
<meta content='seattlerealestatephoto@gmail.com | (425)390-4204 | Renton, WA 98058' property='og:description'/>
<meta content='https://www.seattlerealestatephoto.com/' property='og:url'/>
<meta content='Seattle Real Estate Photo' property='og:site_name'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='seattlerealestatephoto@gmail.com | (425)390-4204 | Renton, WA 98058' name='twitter:description'/>
<meta content='Real Estate Photographer | Alex Bucse serving King County and More' name='twitter:title'/>
<meta content='Alex Bucse' name='author'/>
<meta content='Real Estate Photographer | Alex Bucse serving King County and More' name='description'/>
<meta content='Seattle Interior and Architectural Photographer | Luxury Home Photography. Commercial and Drone Photography, Drone Photography, Portraits, Headshots, Real Estate, Seattle, corporate photography, Seattle photographer, Renton Photography, Bellevue, Kirkland, Redmond, Issaquah,Kent, Mapple Valey, Covington, Auburn, Agent Headshots, aerial photography, AirBnB photos,VRBO Photos, Rental Property Photos, commercial photography service, real estate photography pricing, real estate drone photography, aerial drone photography, real estate aerial photography, real estate photography packages, 360 home photography,real estate photographers near me,professional real estate photography, real estate agent photos,twilight real estate photography, residential photography, airbnb photography, wrbo photography, real estate team photos, matterport photographer near me, best real estate photographers, twilight real estate photos, 360 home photography, listing photos, listing photography, real estate photoshoot, interior real estate photography, 3d property photography,3d real estate photography near me, professional property photography, matterport photographer, matterport photographers near me, realtor headshots near me, realtor lifestyle photos, professional home photographer near me, professional real estate photography near me, real estate photography and videography, drone real estate photography near me, virtual tours real estate photography, real estate agent headshot photography, mls photographer,real estate photo service, dusk real estate photography, photography for homes,photographing homes for real estate, home drone photography, real estate marketing photos,aerial photography of your home,3d photos for real estate,house photography for real estate, realestate photography near me,real estate aerial,realtors photos,photographer property,property photographer, floor plan, 2D FloorPlan, 2D floor plan, virtual staging, digital staging ' name='keywords'/>
<meta content='Seattle area Photography for Architecture, Interiors, Aerial, 3D, 2D, Virtual Staging, Video & Real Estate. Professional Business Headshots. Professional, Local &' property='og:description'/>
<!-- Basic Bootstrap Component CSS Files -->
<!-- Font Awesome -->
<link href='https://use.fontawesome.com/releases/v5.8.1/css/all.css' rel='stylesheet'/>
<!-- Bootstrap core CSS-->
<link href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css' rel='stylesheet'/>
<!-- Material Design Bootstrap -->
<link href='https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css' rel='stylesheet'/>
<!-- Your custom styles (optional) -->
<link rel='stylesheet" href="css/style.css'/>
<!-- Basic Bootstrap Component CSS Files -->
<!-- Font Awesome -->
<link href='https://use.fontawesome.com/releases/v5.8.1/css/all.css' rel='stylesheet'/>
<!-- Bootstrap core CSS-->
<link href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css' rel='stylesheet'/>
<!-- Your custom styles (optional) -->
<link crossorigin='anonymous' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' integrity='sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T' rel='stylesheet'/>
<link rel='stylesheet' href='css/style.css'/>
<link href='https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css' rel='stylesheet'/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.js" integrity="sha512-CX7sDOp7UTAq+i1FYIlf9Uo27x4os+kGeoT7rgwvY+4dmjqV0IuE/Bl5hVsjnQPQiTOhAX1O2r2j5bjsFBvv/A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src='https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js'type="text/javascript"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script crossorigin='anonymous' integrity='sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM' src='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js' type="text/javascript"></script>
<title>
</title>
</head>
<body data-offset='50' data-spy='scroll' data-target='.navbar'>
<div id='header'>
<nav class='navbar navbar-expand-md navbar-light' id='nav'>
<a class='navbar-brand' href='#'><img src='https://1.bp.blogspot.com/-memT7a_h98o/Xzw-SUQoZtI/AAAAAAADntQ/5RJd_Hv1IJYkGY2fj5dyALyPCXhUDeLCwCLcBGAsYHQ/s232/SRPWebLogo.png'/></a>
<button aria-controls='navbarNavDropdown' aria-expanded='false' aria-label='Toggle navigation' class='navbar-toggler' data-target='#navbarNavDropdown' data-toggle='collapse' type='button'>
<span class='navbar-toggler-icon'></span>
</button>
<div class='collapse navbar-collapse' id='navbarNavDropdown'>
<ul class='navbar-nav'>
<li class='nav-item'>
<a class='nav-link internal' data-id='about' href='#about'>HOME</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='portfolio' href='#portfolio'>PHOTOS</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='matterport' href='#matterport'>3D TOURS</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='aerial' href='#aerial'>AERIAL</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='video' href='#video'>VIDEO</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='floorplan' href='#floorplan'>FLOOR PLAN</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='virtualstaging' href='#virtuastaging'>VIRTUAL STAGING</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='booknow' href='#booknow'>BOOK NOW</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-id='contact' href='#contact'>CONTACT</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-target='.bd-FAQ-modal-lg' data-toggle='modal' href='#'>FAQ</a>
</li>
<li class='nav-item'>
<a class='nav-link internal' data-target='.bd-example-modal-lg' data-toggle='modal'><i class='fas fa-info-circle' title='tooltip'></i><span class='mobileMediaText'>HDR vs Flambient</span></a>
</li>
<li class='nav-item'>
<a class='nav-link' href='mailto:seattlerealestatephoto@gmail.com' style='color:#000000;'><i class='fas fa-envelope'></i><span class='mobileMediaText'>EMAIL</span></a>
</li>
<li class='nav-item'>
<a class='nav-link' href='http://www.instagram.com/seattlerealestatephoto' style='color:#000000; '><i class='fab fa-instagram'></i><span class='mobileMediaText'>INSTAGRAM</span></a>
</li>
<li class='nav-item'>
<a class='nav-link' href='http://www.facebook.com/monkifoto' style='color:#000000;'><i class='fab fa-facebook-square'></i><span class='mobileMediaText'>FACEBOOK</span></a>
</li>
<li class='nav-item'>
<a class='nav-link' href='https://www.youtube.com/channel/UCqT0likujRE4LjRimlbhxfg' style='color:#000000;'><i class='fab fa-youtube'></i><pan class='mobileMediaText'>YOUTUBE</span></a>
</li>
</ul>
</div>
</nav>
</div>
<div id='page-wrap'>
<div class='page1' id='page1'>
<section id='about'>
<div class='container-fluid container-padding'>
<div style='height: 30px'></div>
<h1 class='welcomeText' style='font-size: 75px;color: #ffffff; text-align: center'>MAKE YOUR LISTING STAND OUT
</h1>
<br/><br/><br/>
<div class='text-block'>
<div style='height: 31px'></div>
<div class='text-center' style=' color:#f5f5f5; width:95%;'><h2>Your future listing has been a comfort to your seller and now let someone else see
what a gem it really is. Now, more than ever, presentation is key in the Seattle real estate market. Home buyers have a variety of options when it comes to finding their new home on the internet. With everyone's busy schedules, they rely on these online photos, videos, floor plans, and virtual 3D tours, and we offer these tools to make your listing stand out.</h2>
</div>
<div class='container text-center'>
<br/><h3> Investing in professional photography for your listing always pays off at closing.</h3> <br/>
<br/>
<button class='nav-link buttons internal' data-id='booknow' href='#booknow' style='color: #0f1626; background-color: #FF533D; border-color: #FF533D; padding: 10px 10px; margin-left: 10px; display:inline !important;'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
BOOK NOW</span>
</button>
<button class='nav-link buttons' onclick='location.href="tel:4253904204";' style='color: #0f1626; background-color: #FF533D; border-color: #FF533D; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
CALL NOW</span>
</button>
<br/><br/>
<button class='nav-link buttons' onclick='location.href="g.page/r/Cd985ZIFCBSGEB0/review"' style='color: #0f1626; background-color: #FF533D; border-color: #FF533D; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
WRITE A REVIEW</span>
</button>
<div style='height: 41px'></div>
</div>
</div>
<div style='height: 41px'></div>
</div>
</section>
</div>
<!--END page1-->
<div>
<div aria-hidden='true' aria-labelledby='myLargeModalLabel' class='modal fade bd-FAQ-modal-lg' role='dialog' tabindex='-1'>
<div class='modal-dialog modal-lg'>
<div class='modal-content'>
<div class='modal-header'>
<button aria-label='Close' class='close' data-dismiss='modal' type='button'>
<span aria-hidden='true'>FAQ</span>
</button>
</div>
<div class='modal-body' style='color: #0f1626; font-size:small;'>
<div class='panel-group' style='max-width:700px;'>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse1'>Do you practice social distancing during Covid-19?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse1'>
<div class='panel-body m-2 p-2'>Yes, I try to adhere to social distancing guidelines as much as
possible. I prefer to be in the home alone during a shoot, but I understand that is not always
possible. I always bring a mask.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse2'>What is the turnover time for photos?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse2'>
<div class='panel-body m-2 p-2'>Real estate photos are delivered within 24 hours. Same day delivery
may be possible with advance arrangement and for an additional fee.<br/>
The images are delivered via an Dropbox download link.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse3'>My property has a sweeping view through the windows.
Will you be able to capture this in your photos?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse3'>
<div class='panel-body m-2 p-2'>Yes, definitely. For homes with views, we can choose the best time
of day to photograph the home. Afternoon or two hours before the sunset is usually best.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse4'>Do you use a wide angle lens to capture all of the
room?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse4'>
<div class='panel-body m-2 p-2'>I do use wide-angle lenses. However, it's not really possible to
capture "all" of a room in a normal photo. The Matterport 3D Walkthorugh or Zillow 3D Home would
be able to showcase that type of view.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse5'>Do you provide drone photos?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse5'>
<div class='panel-body m-2 p-2'>Yes I do. Aerial photography and video allows you to showcase a
listings uniques selling features with a bird's-eye view.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse6'>Drone photos: Are there limitations?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse6'>
<div class='panel-body m-2 p-2'>The FAA has strict restrictions as to where drones can be used. The
address of the home being photographed will need to be checked in advance to make sure it's OK to
use a drone in that area.
<br/>*Drone photos can not be taken in the rain or on very windy days.
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse7'>What is your service area?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse7'>
<div class='panel-body m-2 p-2'>My standard area coverage is King County. To be more specific,
Seattle, Kirkland, Bothell, Bellevue, Renton, Kent, Auburn, Maple Valley, Issaquah, Federal Way,
and Sammamish. Shoots beyond the Seattle-Eastside area will be subject to an additional fee of $1
per mile, and or ferry fee, etc.
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse9'>Is this the only type of photography you do?
</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse9'>
<div class='panel-body m-2 p-2'>While I dabble in portraiture but I specialize in real estate
photography.
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse10'>How many listing photos do I receive to put on the
MLS?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse10'>
<div class='panel-body m-2 p-2'>The NWMLS limit is 40 images. You will receive between 20 - 40
photos for a standard property or more depending on size.
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse11'>How long does a real estate shoot take?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse11'>
<div class='panel-body m-2 p-2'>A standard size home takes about 1 hour for photos. The time
required is based on, services, the size of the home, the amount of existing light, etc.
Once I know the size and scope of your property I can give you a better time estimate.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse13'>Do you offer 3D Matterport tours?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse13'>
<div class='panel-body m-2 p-2'>Yes I do. Matterport 3D Walkthrough and Zillow 3D Home are the
future of the real esate. </div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse14'>Can I give these images to the builder / stager /
anyone?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse14'>
<div class='panel-body m-2 p-2'>No. Property images are licensed for the purpose of marketing and
listing the property for sale. Per US copyright law, photographers retain the copyright for all
photographs produced. Additional licensing options are available. Please inquire.
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse15'>What should I do to prepare my listing for being
photographed?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse15'>
<div class='panel-body m-2 p-2'>
The property should be neat and clean.
<br/>
<ul>
<li>Landscaping - Suggestions: Mow the law, trim bushes and trees, remove unnecesary items add
flowers</li>
<li>Declutter - Suggestions: Remove extra furniture, appliances, boos, wall decorations and toys
</li>
<li>Brighten UP - Suggestions: Open up curtains and blinds, turn on all the lights and lamps.
</li>
<li>Stow Away - Suggestions: Store personal items such as photos, documents, toiletries and
clothing.</li>
<li>Clean Up - Suggestions: Keep the surfaces as clean as possibile such as countertops, tables,
desks and floors.</li>
<li>Scehduling - Suggestions: Plan in such way nonesential persons and pets are off site duting
the photoshoot time.</li>
<li>Help - Suggestions: Consider getting a helping hand from a clearning, stageing or landscape
professional. </li>
</ul>
</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse16'>Can you add or remove stuff from a image?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse16'>
<div class='panel-body m-2 p-2'>Everything should be as you want it for the final image prior to my
arrival. While it's technically possible to add or remove almost anything in or out of an image,
this can be much more complex and time consuming. Extreme editing requests may incur additional
fees. Minor adjustments are done at no charge.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse17'>Is a bright, sunny day the best for taking
photos?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse17'>
<div class='panel-body m-2 p-2'> Sunny days can be difficult for interior photography. The ideal
weather for real estate interior photography is a day when it's lightly cloudy.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse18'>What is HDR photography?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse18'>
<div class='panel-body m-2 p-2'> HDR photography is a common style used by many real estate
photographers. HDR stands for High Dynamic Range and the basic principle is to capture multiple
exposures and to use image blending technology to create an image that has visible elements in the
dark and bright areas.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse19'>Do you provide MLS (multiple listing service)
photos?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse19'>
<div class='panel-body m-2 p-2'>For real estate listings I provide MLS-ready photos. To speed up the
process, high-resolution photos for use with brochures, flyers, or other printed material are
available up on request.</div>
</div>
</div>
<div class='panel panel-default py-1'>
<div class='panel-heading'>
<h6 class='panel-title'>
<a data-toggle='collapse' href='#collapse12'>Do you provide home staging?</a>
</h6>
</div>
<div class='panel-collapse collapse' id='collapse12'>
<div class='panel-body m-2 p-2'>I do not offer home staging. If needed, I can put you in touch with
a professional home stager.</div>
</div>
</div>
</div>
</div>
<div class='modal-footer'>
<button class='buttons' data-dismiss='modal' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; ' type='button'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>CLOSE</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div id='page2'>
<section id='portfolio'>
<div class=''></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-6 col-xs-12' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#f5f5f5;'>
<div style='height: 41px'></div>
<h2 class='pageHeader'>PHOTOGRAPHY</h2>
<!-- Large modal -->
<div aria-hidden='true' aria-labelledby='myLargeModalLabel' class='modal fade bd-example-modal-lg' role='dialog' tabindex='-1'>
<div class='modal-dialog modal-lg'>
<div class='modal-content'>
<div class='modal-header'>
<button aria-label='Close' class='close' data-dismiss='modal' type='button'>
<span aria-hidden='true'>HDR vs Flash Photography</span>
</button>
</div>
<div class='modal-body' style='color: #0f1626;'>
<strong>HDR PHOTOGRAPHY (High Dynamic Range)</strong>
<br/>
HDR photography is a common style used by many real estate photographers. HDR stands for High
Dynamic Range and the basic principle is to capture multiple exposures and to use image blending
technology to create an image that has visible elements in the dark and bright areas.
<br/><br/>
<strong>FLASH PHOTOGRAPHY (Flambient)</strong>
<br/>
The “flambient” method for shooting real estate photography involves combining both
flash exposures and HDR exposures to preserve the true colors while evening the light trought the
scene.
<table>
<tr>
<td style='text-align:center'><strong>ESSENTIAL HDR</strong></td>
<td style='text-align:center'><strong>SHOWCASE HDR + Flash</strong></td>
</tr>
<tr>
<td><a href='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYheCCVu4zic7Nvy4ZlcCx5uH_d1_pPrEEP3lo5DiBATyV23cs0pH70cYpWtbWDRFkCNGH5OcIV744t601g_7FnKfZO_X6xEgkimauYM0ilKEZJAdIzHEuhHuk0mzV-U_1sbcpH8JwMo2u3w5Y-5CIffrbyUTN5S9bkLp-MBAijq3mY7GcvJodI-x4zg/s2048/Essential2.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1365' data-original-width='2048' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYheCCVu4zic7Nvy4ZlcCx5uH_d1_pPrEEP3lo5DiBATyV23cs0pH70cYpWtbWDRFkCNGH5OcIV744t601g_7FnKfZO_X6xEgkimauYM0ilKEZJAdIzHEuhHuk0mzV-U_1sbcpH8JwMo2u3w5Y-5CIffrbyUTN5S9bkLp-MBAijq3mY7GcvJodI-x4zg/s320/Essential2.jpg' width='320'/></a></td>
<td><a href='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdEJmFSLUTRah85ihN1F9ddX1IyXg5ZyNbV9Ci7wO_jNn1XdgZ-o3iM5464aHEMfTfdCSePvNLGVLrxf-2BRmp8VE4LZojSrSrT-f_WoYhASO6HTgXmYq_9FHrZU8P4H0kUfAiuESR9wMm2MppaK_qiffFVoTpfzC2BxVHITX7gbzwnBPAcnEiZgW4mQ/s2048/Showcase.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1365' data-original-width='2048' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdEJmFSLUTRah85ihN1F9ddX1IyXg5ZyNbV9Ci7wO_jNn1XdgZ-o3iM5464aHEMfTfdCSePvNLGVLrxf-2BRmp8VE4LZojSrSrT-f_WoYhASO6HTgXmYq_9FHrZU8P4H0kUfAiuESR9wMm2MppaK_qiffFVoTpfzC2BxVHITX7gbzwnBPAcnEiZgW4mQ/s320/Showcase.jpg' width='320'/></a></td>
</tr>
<tr style='display:none'>
<td><a href='https://1.bp.blogspot.com/-Oai5cq_El9g/X2vZHcfRXKI/AAAAAAADpHk/8mCGg5eBVrAMy2KClkk_EP_vyc8vvD39QCLcBGAsYHQ/s2048/_MKY2294-HDR-Edit-1101.jpg' style='display: block; padding: 1em 0px; text-align: center;'>
<img alt='' data-original-height='1385' data-original-width='2048' src='https://1.bp.blogspot.com/-Oai5cq_El9g/X2vZHcfRXKI/AAAAAAADpHk/8mCGg5eBVrAMy2KClkk_EP_vyc8vvD39QCLcBGAsYHQ/s320/_MKY2294-HDR-Edit-1101.jpg' width='320'/></a></td>
<td><a href='https://1.bp.blogspot.com/-KdFLF2t0kaQ/X2vZHXEnvzI/AAAAAAADpHo/6Lx2tKfOp3sRT8FizjvvI75EMm3eJEHhgCLcBGAsYHQ/s2048/_MKY2294-HDR-Edit.jpg' style='display: block; padding: 1em 0px; text-align: center;'>
<img alt='' data-original-height='1385' data-original-width='2048' src='https://1.bp.blogspot.com/-KdFLF2t0kaQ/X2vZHXEnvzI/AAAAAAADpHo/6Lx2tKfOp3sRT8FizjvvI75EMm3eJEHhgCLcBGAsYHQ/s320/_MKY2294-HDR-Edit.jpg' width='320'/></a></td>
</tr>
<tr style='display:none'>
<td><a href='https://1.bp.blogspot.com/-NQ52OSsGUCo/X2vfUOiUFvI/AAAAAAADpIA/urmerNOwiWQZPBKu76btSR_1_nrciQZ2wCLcBGAsYHQ/s2048/_MKY0145-Edit1.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1385' data-original-width='2048' src='https://1.bp.blogspot.com/-NQ52OSsGUCo/X2vfUOiUFvI/AAAAAAADpIA/urmerNOwiWQZPBKu76btSR_1_nrciQZ2wCLcBGAsYHQ/s320/_MKY0145-Edit1.jpg' width='320'/></a></td>
<td><a href='https://1.bp.blogspot.com/-83ynZ1-S1kY/X2vfT15uKpI/AAAAAAADpH4/zQC6Uh_rMtsmH_32O18TThSOAjE3DcjGgCLcBGAsYHQ/s2048/_MKY0145-Edit.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1385' data-original-width='2048' src='https://1.bp.blogspot.com/-83ynZ1-S1kY/X2vfT15uKpI/AAAAAAADpH4/zQC6Uh_rMtsmH_32O18TThSOAjE3DcjGgCLcBGAsYHQ/s320/_MKY0145-Edit.jpg' width='320'/></a></td>
</tr>
<tr>
<td><a href='https://1.bp.blogspot.com/-Jcz_9TZEl-M/X2vfUp1toAI/AAAAAAADpIE/5rNpj29_HxsI5eai8CR8xi60hrPTQGT8QCLcBGAsYHQ/s2048/_MKY1920-HDR-Edit-11171.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1379' data-original-width='2048' src='https://1.bp.blogspot.com/-Jcz_9TZEl-M/X2vfUp1toAI/AAAAAAADpIE/5rNpj29_HxsI5eai8CR8xi60hrPTQGT8QCLcBGAsYHQ/s320/_MKY1920-HDR-Edit-11171.jpg' width='320'/></a></td>
<td><a href='https://1.bp.blogspot.com/-M-eLRVFAeHY/X2vfUNIjCLI/AAAAAAADpH8/_YeUI8zteHQ_p8o36flh2-GfXLVZozpSgCLcBGAsYHQ/s2048/_MKY1920-HDR-Edit-1117.jpg' style='display: block; padding: 1em 0; text-align: center; '>
<img alt='' data-original-height='1379' data-original-width='2048' src='https://1.bp.blogspot.com/-M-eLRVFAeHY/X2vfUNIjCLI/AAAAAAADpH8/_YeUI8zteHQ_p8o36flh2-GfXLVZozpSgCLcBGAsYHQ/s320/_MKY1920-HDR-Edit-1117.jpg' width='320'/></a></td>
</tr>
</table>
</div>
<div class='modal-footer'>
<button class='buttons' data-dismiss='modal' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; ' type='button'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>CLOSE</span>
</button>
</div>
</div>
</div>
</div>
<div style='height: 21px'></div>
<p>
We help homeowners and realtors place their listings with professional images. We photograph your
listings with the latest in camera technology with multiple lighting options and image blending
technology to create HDR(High Dynamic Range)photos. We offer interior, exterior, aerial photography and
video to make your listings stand out!
<br/>
<br/>
<h4><b>ESSENTIAL PACKAGE(HDR)</b></h4>
<br/>
<span>
HDR photography is a common style used by many real estate photographers. HDR stands for High Dynamic Range and the basic principle is to capture multiple exposures and to use in hand-blending images using the available light from windows and light fixtures create an image that has visible elements in the dark and bright areas.
</span>
<br/><br/>
<h4><b>SHOWCASE PACKAGE(HDR Flash)</b></h4>
<br/>
<span>The “HDR Flash” method for shooting real estate photography involves hand-blending both exposures using professional lighting with natural light exposures to preserve the true colors while evening the light trought the scene. </span>
<br/>
<br/>
<small>To see the difference click the INFO button <i class='fas fa-info-circle' title='For examples and details click the INFO button below.'></i>+ below </small> <br/>
</p>
<div style='height: 41px'></div>
<div class='pageButtons' style='text-align:center'>
<button class='buttons' data-target='.bd-example-modal-lg' data-toggle='modal' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important; ' type='buttons'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
<i class='fas fa-info-circle' title='tooltip'></i> INFO</span>
</button>
<button class='buttons' data-target='.bd-FAQ-modal-lg' data-toggle='modal' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important;' type='buttons'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
FAQ </span>
</button>
<button class='buttons internal' data-id='booknow' href='#booknow' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
SCHEDULE TODAY</span>
</button>
<button class='nav-link buttons btnPage2Gallery' data-id='videoGallery' id='btnPage2Gallery' onclick='location.href="tel:4253904204";' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons btnPage2Gallery' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
CALL NOW</span>
</button>
</div>
<div style='height: 41px'></div>
</div>
<div class='col-md-6 col-xs-12' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#0f1626;'>
<div style='height: 41px'></div>
<div class='carousel slide' data-ride='carousel' id='mainCarousel'>
<ol class='carousel-indicators'>
<li class='active' data-slide-to='0' data-target='#mainCarousel'></li>
<li data-slide-to='1' data-target='#mainCarousel'></li>
<li data-slide-to='2' data-target='#mainCarousel'></li>
<li data-slide-to='3' data-target='#mainCarousel'></li>
<li data-slide-to='4' data-target='#mainCarousel'></li>
<li data-slide-to='5' data-target='#mainCarousel'></li>
<li data-slide-to='6' data-target='#mainCarousel'></li>
<li data-slide-to='7' data-target='#mainCarousel'></li>
<li data-slide-to='8' data-target='#mainCarousel'></li>
<li data-slide-to='9' data-target='#mainCarousel'></li>
<li data-slide-to='10' data-target='#mainCarousel'></li>
<li data-slide-to='11' data-target='#mainCarousel'></li>
<li data-slide-to='12' data-target='#mainCarousel'></li>
<li data-slide-to='13' data-target='#mainCarousel'></li>
<li data-slide-to='14' data-target='#mainCarousel'></li>
<li data-slide-to='15' data-target='#mainCarousel'></li>
<li data-slide-to='16' data-target='#mainCarousel'></li>
<li data-slide-to='17' data-target='#mainCarousel'></li>
<li data-slide-to='18' data-target='#mainCarousel'></li>
<li data-slide-to='19' data-target='#mainCarousel'></li>
<li data-slide-to='20' data-target='#mainCarousel'></li>
<li data-slide-to='21' data-target='#mainCarousel'></li>
<li data-slide-to='22' data-target='#mainCarousel'></li>
<li data-slide-to='23' data-target='#mainCarousel'></li>
<li data-slide-to='24' data-target='#mainCarousel'></li>
</ol>
<div class='carousel-inner'>
<div class='carousel-item active'>
<img alt='Real Estate Photography Home Example' class='d-block responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEhYKL2hFWDeNkdPwHVPjkmud64_aCzBmh6D4uTX4tZypj1FPlWjLuIXGtgd5EYieBO9TdOcP9X7SgFeLeUd_VCUD10I0ATZAnJ1_tEVApGJrrp2TAOJtqR3ffOa-3kXkes08zeUn1KNW5hh5arx9j_xtqjlAd6IDtAc4ghm3wfZ6lYx0VGOnCypkuzwvg=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='d-block responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcl3ZgOY-FWr1WssmdbyV-t8XJ6Egzh5uwj4v48SBt_L2vRDsF9PAKPqCfIdoUG2bb9KMTjlX1KLZI7DrgguFHbenocorqgVpnYIjJ96cEU2WR6FEt-MWKB0rA9FhMPM-A6h_poICjLBIHECfpxN_hDJ2IpNy7EjH-4whcwow5kyXZ3yg_wqqImsoFVg/s1024/_MKY0354.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='d-block responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEhjmN2PGxeP20DOSVdc4Jde96pVTqlBcwu2rnjmwMhXXfXdfWeYOWsEAUVGFZv1jPIKcsDRThF13eSYPjd3UaRqSTGqqOLAkYlRUNR1Nn9f6_-NVCBZ-v9a86kWwVivfEStJuuQ68iG0GezlCdd9yi8IaaisuaaqsSMmY3L988jDq5LGXwcFUXBkn36Lg=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEg9nT114i7bIq6VQOhSsTeDW_JGFTL7dB8UgZhzZnpeuh08mbhwgvI0OqMy-RkG2Z35x_cAQjrBSn-80tqHbSqRsYvvxfFq-Ws8iVFkaTeYXVJZ4lQLT1GQJczSIoX9kREAFviClGS4lX3Dv0X25-8kuMS3db2Uj6E17qJCer9ARbwa7Zwyobb3pGc1wA=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEgphU1RYRBFAqhTHjcLhH0-0CvA4YgvTzdVJGV9FN6x4naP_3o6f25mfDN25g8dVl4hKSNDH7Ai8Ssgzrhcp7oYb4MaXmwC1gS8OcvTIp3wzUCusFvD9jq2P7a0NTfmgXyqrqXpCl443Yz2rmfp2a2oNNJWXqva7BjrPy0w6RyCEb4GI9bYnCGt3ReTWw=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEj5sv4nXFB-gULJPWIpGhE6EX80Maf02OkbIv2526MoNdrM7PQ2tpSaOxtb4B2SRSu9eJXJEcdl2Sg3YrjwwLt78kPSXpBhMEiLQwCW26SHW_7HDUolQ4O18PiX0IVpMG0x581eIJkoUth7H27r7t29nHalr9TW79chPTLKXPR4S9EQhJUFXFFugXzqYw=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEib0cxyavK24D6djeQYnxrOT4az6CfxzNN2Y4eORNgmtLzSBVrJ6i4TVZswMGgCQSBnV1-FWp2XPq3dpWp7MqMy8TznC1OWsL7-5UpxibKt6bhNJLgSdwccW7080VNA-HqZzAntoQNxuxldd8Bdk5ZdJbArKP6bNMFBK6BmNvtFmfCgb2t6NsUDjhgNGA=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEiljGCNTzCXoWXF3lzTz4JDiBraRAUAFw49DYVnXXcNN5a1qjN1iBdBenyxPZHOqlb6rKlT2m5Ac7tp5JnvMBhmZeczn2ImCbo8Hr8jefnJwt5ZGFKUbO5wtdEXq-zD8y_4pP1qdC6rBuC7aWIla1jRfKJjwmSwctj6ugS8uQVSAYVzQ46RJu3Pc1eC-Q=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOWRJ-AvuQvoRoWtvjWRWdj0PSU89eeKYLDyJIPNaDHuW84yzUCErmpVt5ZIQwHNWh3OKsTKPzRM-XAbbMDBgF9YPundxGhM4w2TdsTY060TYdnpmkuyJhXkrY7RPG5U6IR0NFNMkoJt_fLqShndkGNwFuhVK53CNMO0wKAMsZ-bnpNQKgjSu61NjcKg/s2048/DJI_0240-Edit.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPniAKFOHplxuu2O_uFZ8HDyfMwtx-qyqj5Bjq2X2GLmhbVrelpA0sGoWYOS5ArrXRJ4dr5h98u8MDFc98Hw-LkEhJI1GKL1Ft2DsNkrzZjK-T7kaErZ5Dmwc3nW7b8vzJKrrtsXzPJypXUa6egP8EvooxkJrUquuMWKvfjfnghkMzI1k5BdPLgeDwBA/s1024/_MKY0544.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj95bIu6DP9quWzh3RMFut8xG3ZrjZAL-yWkhpS3X7ea8DRVj69oIMLdG2Ug49CJbmO5RfxU__QegNX8uQOWVjEbGoKGzYQOhRekYqawehupdKK_GMNiFPD_tDF--7ergIhtkRZIkilrNia-T-xtI79ZZ8d18PTII6BlzhEfGaCOeYKjP4EYuG5rN9HyQ/s1024/_MKY0652.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjo89eP5i9Keg_sf1gICj-PVcRm94R2k1A6nod3Scj5u2PGUPjGaupWLSwgzs1irkkxToUnF419gJtkwu9f3SaGNK-S5mNFioECyZeTtpwncSqvOP2_ujbdX874DDHUtQeJhpinTPPlQkYqFn6cW7nYHcpRY2FhBf6_N_K6yj2EBEmiPxZ6owpZUy8c1Q/s1024/_MKY0746.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEhBTFHokZAGKfno9QdN0xWVPHJNGaajoVbjFFm9KEwCbOW9kRdWN2mRXxDm3_pzkLmlxlEt_kmyghURdVxH2nMgevHbItvhw8yadGzE3zrA7QoMq4mR_jQ1pnvOSeMkgFm7-K_aLypXemx_0bikKuy-XwANfI6mqvbLv7BQ2B_lYmuQ5PVPkZytkoL-yw=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-_IVdB80HZcs/YICRBNEn0FI/AAAAAAADy74/itBVdUR7sy8OO981GBe7eVse-lQU_LTMACLcBGAsYHQ/s1024/_MKY1172-HDR-Edit.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-xAjLlrt-XB0/X0BOQTBYkGI/AAAAAAADn1s/f_qt4KwoyCYbnyQIJQoE2SlEtNnjHZ_4gCLcBGAsYHQ/s1024/MKI09808-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-9btUNYnS17U/X0BOT8sBCII/AAAAAAADn2c/yh13b3lSIzUZ0SkStg736UcyPu7ju-RFwCLcBGAsYHQ/s1024/MKY04136-HDR-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-sFlkH_5E-SQ/X0BOUWNKjII/AAAAAAADn2g/Bo_l3YOz5RM6EWrAWzExmkJTHPJNnCT5ACLcBGAsYHQ/s1024/MKY04151-HDR-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-pyYljHKEgmo/X0BOQ93EwLI/AAAAAAADn1w/rHfA4RaRiqQ65E7Gr1xSDBPJEiyQhJiTQCLcBGAsYHQ/s1024/MKY00477-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-dbuT4KbKiQQ/X1q8-6GME5I/AAAAAAADovU/7B8nIEETGCw3PI8yEv9sRSvHLv3QVsMnACLcBGAsYHQ/s1024/_MKY0912-HDR-HDR-Edit-2-Edit.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-hO0chFJJoek/X1q9Mf9yztI/AAAAAAADovY/WLAIWiX_2xkx-34Sl5V3T3Gm1NC3zorngCLcBGAsYHQ/s1024/_MKY1281-HDR-Edit-2.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/a/AVvXsEjycZyq4S2_x9EufwjZyNTZUSx2wcLcwfdY7Ds7a53BxNnM-sQoCk7QHzOBcGPj3C7fmtuN6wkzfz9JJeccfqeX88LLf4dDMO5Kpux7WGz4ghNZlxJ2LSvEIKno-2QuxVlRG2jivDWn2fk6RfUu6cQPrEcvqt3fAh7gZch0lBF-J0URNywZ_kTOQtCwzw=s1024'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4OnL_oZlBwniVz2LacnD-oFj8fzasJJW4vp4SW9JpxZ2F3C-vL4LP7A6C9vGu46qazTMEajpdqHVyWH-meijCwui2iKy_CsVTQwRXiMUk8mYKPYoqnHPFd16CiPvuJNtH47evTaP8MzUygXO48gMHI4A2TYsqezs2XFwKrv-Zeiu5CEmeCjgpdfCbHA/s2048/_MKY0520.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXVivEKL9PCo0Vro7mAKVrYMNRHUhPh72oB5avnM-7C7wWD3uoSYtk9S0rdWBm8jqpcJ-3oLlKR5HubnP9e96garMBI0qbcX7EYqfdO0RI9nJxfeGUL9-Z3aTVTR-NRhBIWik2XJq2-M8qNPzwC6vji12wTA8CG7neC2wcw-vcQYYwmy40eQXSdDeR4g/s1024/_MKY0422.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_DjS5tOLqfZcPjYXk1_6jDjWyiryePfW6xy4-pH7AVAbHmddS8MfUb8b3MZywhVGVJJU9CJUYqucRk5AdRgIHL6fPCVncgyqG7tpDM9vti3p2b-0mU9PvBuEQKc5dgrzjJZGWQv8xIiWvgTIzKLYGfj_vHvi4xtn-AsdeDT1QpaPbwLUXtDuDSi1llg/s2048/_MKY0527.jpg'/>
</div>
<div class='carousel-item'>
<img alt='Real Estate Photography Home Example' class='responsive' src='https://1.bp.blogspot.com/-Aj605hw_kDo/X0BOS3KWw8I/AAAAAAADn2M/k1JjmoVGAasvASxXyQkrJCpyBCN7FBwbACLcBGAsYHQ/s1024/MKY03071-HDR-Edit.jpg'/>
</div>
</div>
<a class='carousel-control-prev' data-slide='prev' href='#mainCarousel' role='button'>
<span aria-hidden='true' class='carousel-control-prev-icon'></span>
<span class='sr-only'>Previous</span>
</a>
<a class='carousel-control-next' data-slide='next' href='#mainCarousel' role='button'>
<span aria-hidden='true' class='carousel-control-next-icon'></span>
<span class='sr-only'>Next</span>
</a>
</div>
</div>
</div>
</div>
<div class='page-padding'></div>
</section>
</div>
<!--END page2-->
<div id='page5'>
<section id='matterport'>
<div class='page-padding'></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-6 ' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#f5f5f5;'>
<img class='responsive' src='https://1.bp.blogspot.com/-BiT4xISoNZw/XzwOyxiAbqI/AAAAAAADntA/hWziUSDc_SIULpXCtavxrIkc5cGNZK0eACLcBGAsYHQ/s640/19918-119th-Ave-SE-08182020_101528.jpg' style=' border:1px solid black'/>
</div>
<div class='col-md-6 ' style='display: table-cell; vertical-align: middle; text-align: left !important; color:#f5f5f5;'>
<div style='height: 41px'></div>
<h2 class='pageHeader'>MATTERPORT 3D TOURS</h2>
<div style='height: 41px'></div>
<p>
Matterport 3D tours, Zillow 3D Home, and Cupix 3D Virtual Space all help create a full immersive virtual
experience for potential buyers. It is the best way to let your customer experience your listing online
from the safety and comfort of their home. Plus, 3D Tours allow the luxury of a 24/7 open house.
</p>
<ul>
<li>According to a recent study, consumers say a 3D virtual home tour is the second most desired feature
in their home search after professional bright photos.</li>
<li>Zillow® listings with a 3D Tour receive twice the number of views as other listings.</li>
</ul>
<div style='height: 41px'></div>
<div class='pageButtons' style='text-align:center'>
<button class='buttons internal' data-id='booknow' href='#booknow' style='color: #0f1626; background-color: #FF533D; border-color: #0f1626; padding: 10px 10px; ' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
SCHEDULE TODAY</span>
</button>
<button class='nav-link internal buttons btnPage5Gallery' data-id='matterportGallery' id='btnPage5Gallery' style='color: #0f1626; background-color: #FF533D; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons btnPage5Gallery' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
VIEW GALLERY</span>
</button>
</div>
<div style='height: 41px'></div>
</div>
</div>
</div>
<div class='page-padding'></div>
</section>
</div>
<!--END page5-->
<div id='page5Gallery'>
<section id='matterportGallery'>
<div class='page-padding'></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-9' style='vertical-align: middle; color:#f5f5f5;'>
<h2 class='pageHeader'>Latest 3D Tours Walkthrough Gallery</h2>
<div style='height: 41px'></div>
</div>
<div class='col-md-3'>
<button class='buttons btnPage5GalleryClose' id='btnPage5GalleryClose' style='color: #0f1626; background-color:#F5F5F5 ; border-color: #0f1626; padding: 5px 5px; margin-left: 10px;' target='_blank'>
<span class='buttons btnPage3Gallery' style='position:relative; display:inline-block; outline:0; padding: 10px 22px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
CLOSE GALLERY</span>
</button>
</div>
</div>
<!-- <div class='row'>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'>
<iframe allow='xr-spatial-tracking' allowfullscreen='' frameborder='0' src='https://my.matterport.com/show/?m=zUU38CHjHH9'></iframe>
</div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'>
<iframe allow='xr-spatial-tracking' allowfullscreen='' frameborder='0' src='https://my.matterport.com/show/?m=9vKiZgxaUs1'></iframe>
</div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'>
<iframe allow='xr-spatial-tracking' allowfullscreen='' frameborder='0' src='https://my.matterport.com/show/?m=Q6GGVsk8S1E'></iframe>
</div>
</div>
</div>
-->
<div class='row'>
<div class='col-md-9' style='vertical-align: middle; color:#f5f5f5;'></div>
<div class='col-md-3'>
<button class='buttons btnPage5GalleryClose' id='btnPage5GalleryClose' style='color: #0f1626; background-color:#F5F5F5 ; border-color: #0f1626; padding: 5px 5px; margin-left: 10px;' target='_blank'>
<span class='buttons btnPage3Gallery' style='position:relative; display:inline-block; outline:0; padding: 10px 22px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
CLOSE GALLERY</span>
</button>
</div>
</div>
</div>
<div class='page-padding'></div>
</section>
</div>
<!--END page5Gallery-->
<div id='page4'>
<section id='aerial'>
<div class='page-padding'></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-6 ' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#0f1626;'>
<h2 class='pageHeader'>AERIAL PHOTOGRAPHY AND VIDEO</h2>
<div style='height: 41px'></div>
<p>
Aerial photography and video allows you to showcase a listing's unique selling features with a
bird's-eye view.
<br/><br/>
Million dollar properties with waterfront views, acreage and one-of-a-kind land features can all be
highlighted and showcased with aerial/drone photography and video.
</p>
<div style='height: 41px'></div>
<div class='pageButtons' style='text-align:center'>
<button class='nav-link buttons internal' data-id='booknow' href='#booknow' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; ' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
SCHEDULE TODAY</span>
</button>
</div>
<div style='height: 41px'></div>
</div>
<div class='col-md-6' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#0f1626;'>
<div class='carousel slide' data-ride='carousel' id='aerialCarousel'>
<ol class='carousel-indicators'>
<li class='active' data-slide-to='0' data-target='#aerialCarousel'></li>
<li data-slide-to='1' data-target='#aerialCarousel'></li>
<li data-slide-to='2' data-target='#aerialCarousel'></li>
<li data-slide-to='3' data-target='#aerialCarousel'></li>
<li data-slide-to='4' data-target='#aerialCarousel'></li>
<li data-slide-to='5' data-target='#aerialCarousel'></li>
<li data-slide-to='6' data-target='#aerialCarousel'></li>
<li data-slide-to='7' data-target='#aerialCarousel'></li>
<li data-slide-to='8' data-target='#aerialCarousel'></li>
<li data-slide-to='9' data-target='#aerialCarousel'></li>
<li data-slide-to='10' data-target='#aerialCarousel'></li>
<li data-slide-to='11' data-target='#aerialCarousel'></li>
<li data-slide-to='12' data-target='#aerialCarousel'></li>
<li data-slide-to='13' data-target='#aerialCarousel'></li>
<li data-slide-to='14' data-target='#aerialCarousel'></li>
</ol>
<div class='carousel-inner'>
<div class='carousel-item active'>
<img class='responsive' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA68q9WS3pZzkbVj3osXREUXe7jUGY9HrNal_jWJMpiNQKvqR0VUg5FMt58_eBNCPX6U6lTCmY4Th7sS5lpAJAeZFPCSlMLzyBuuec_LLvrcx9UycvvKaCkwsHxOm9a8Xr7yuEsG6Nt7sNcC4nwuWThNXEdfqRFjfGMG90hFkMiRAzetNfT0RjrM7OZw/s1024/DJI_0777-Edit.jpg'/>
</div>
<div class='carousel-item '>
<img class='responsive' src='https://1.bp.blogspot.com/-nL8FF-vw9oE/Xz_-K4BLqMI/AAAAAAADn0w/9Hs3rm3YXMMenWix0hv0-JSwv9ugKM0FQCLcBGAsYHQ/s1024/Edmonds-Drone-176.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-lLOcrvhxrSk/Xz_-K_hVFiI/AAAAAAADn0s/EAiohPGJ0DgIHhj5d-9n_Y2iBVoHtKgkACLcBGAsYHQ/s1024/Edmonds-Drone-169.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-3aNlXhv_oD8/Xz_-IukUN1I/AAAAAAADn0c/GLfj7epw9ksu71P4dqf_KyYa1AVobpCzwCLcBGAsYHQ/s1024/DJI_0693-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-WyVrpFi9o9g/Xz_-JiR_xrI/AAAAAAADn0k/1VN5zRKP_YA7mVKQ6V0P8ZoXO65Tc4H_gCLcBGAsYHQ/s1024/DJI_0818-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-X00zxafg5a4/Xz_-JrZg5jI/AAAAAAADn0g/4zDZOR4WG68uJYaaLuUjF-dEQO4VT8xqwCLcBGAsYHQ/s1024/DJI_0743-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-Ien9zziXKqM/X1rOcw6zkGI/AAAAAAADowU/DYxUQdBKqakJDIyCjZOT3fi5EKDjWxwbACLcBGAsYHQ/s1024/DJI_0985-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-uPK1iLMEKUI/Xz_-INNxKSI/AAAAAAADn0U/Ma8PRlrucUkx_IB0CMP3t8Wt4LH8wy27QCLcBGAsYHQ/s1024/DJI_0171-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-ldQ856ps9I0/Xz_-H8KSmoI/AAAAAAADn0Q/I7QQ1IxjV7M0w7UXhEFfmX5jDn6DBRzdACLcBGAsYHQ/s1024/DJI_0141-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-BIz5i6QUdB4/X1rAVkiSIoI/AAAAAAADowA/9Tq6yy7dB64_vVXgYXk1XRyPCRPxoljEQCLcBGAsYHQ/s1024/DJI_0071-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/--lvlTkt-Z7U/X1rAVmHxQTI/AAAAAAADov8/XIi8t7EO_A8BkFBSLHTvwP18kOjEIN2xQCLcBGAsYHQ/s1024/DJI_0091-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-gmXou1_vgO0/X1rAVWIFijI/AAAAAAADov4/OH6TLqwtUGcfHYVtxbcYTsFpCpEmAD7VACLcBGAsYHQ/s1024/DJI_0243-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-GGim1050Ae8/X1rOc3J5elI/AAAAAAADowc/IZEg8lqwqoA1VREOYD1LqwDtJo-SoNcDwCLcBGAsYHQ/s1024/DJI_0011-HDR.jpg'/>
</div>
<div class='carousel-item'>
<img class='responsive' src='https://1.bp.blogspot.com/-71eKAxNkUd4/X1rOcy_KrFI/AAAAAAADowY/mXREa2jXcLgnCm2obWYGUyF8bOQp0cVsQCLcBGAsYHQ/s1024/DJI_0955-HDR.jpg'/>
</div>
</div>
<a class='carousel-control-prev' data-slide='prev' href='#aerialCarousel' role='button'>
<span aria-hidden='true' class='carousel-control-prev-icon'></span>
<span class='sr-only'>Previous</span>
</a>
<a class='carousel-control-next' data-slide='next' href='#aerialCarousel' role='button'>
<span aria-hidden='true' class='carousel-control-next-icon'></span>
<span class='sr-only'>Next</span>
</a>
</div>
</div>
</div>
</div>
<div class='page-padding'></div>
</section>
</div>
<!--END page4-->
<div id='page3'>
<section id='video'>
<div class='page-padding'></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-6' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#f5f5f5;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/sFa7xBJ01Ws' style=' border:1px solid black' width='639'></iframe></div>
</div>
<div class='col-md-6' style='display: table-cell;vertical-align: middle; text-align: left !important; color:#f5f5f5;'>
<div style='height: 41px'></div>
<h2 class='pageHeader'>VIDEO TOURS</h2>
<div style='height: 41px'></div>
<p>
Due to everything happening around us, buyers now rely on online tools to help them narrow down
potential home choices and the online presence of each listing is everything. We offer professional
videos and 3D Tours that showcase both homes as well as the local community. We also offer videos about
the services you offer to potential clients so that way people get to know you before they ever meet
you.
<br/><br/>
</p>
<div style='height: 41px'></div>
<div class='pageButtons' style='text-align:center'>
<button class='buttons internal' data-id='booknow' href='#booknow' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; ' target='_blank'>
<span class='buttons' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
SCHEDULE TODAY</span>
</button>
<button class='nav-link internal buttons btnPage3Gallery' data-id='videoGallery' id='btnPage3Gallery' style='color: #F5F5F5; background-color: #0f1626; border-color: #0f1626; padding: 10px 10px; margin-left: 10px; display:inline !important;' target='_blank'>
<span class='buttons btnPage3Gallery' style='position:relative; display:inline-block; outline:0; padding: 12px 26px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
VIEW GALLERY</span>
</button>
</div>
</div>
</div>
</div>
<div class='page-padding'></div>
</section>
</div>
<!--END page3-->
<div id='page3Gallery'>
<section id='videoGallery'>
<div class='page-padding'></div>
<div class='container-fluid container-padding'>
<div class='row'>
<div class='col-md-9' style='vertical-align: middle; color:#f5f5f5;'>
<div style='height: 41px'></div>
<h2 class='pageHeader'>Video Gallery</h2>
<div style='height: 41px'></div>
</div>
<div class='col-md-3'>
<button class='buttons btnPage3GalleryClose' id='btnPage3GalleryClose' style='color: #0f1626; background-color:#F5F5F5 ; border-color: #0f1626; padding: 5px 5px; margin-left: 10px;' target='_blank'>
<span class='buttons btnPage3Gallery' style='position:relative; display:inline-block; outline:0; padding: 10px 22px; font-size:10px; line-height:20px; letter-spacing:2px; font-style:normal; font-weight:700'>
CLOSE GALLERY</span>
</button>
</div>
</div>
<div class='row'>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/mXaU-y-1g00' style=' border:1px solid black' width='639'></iframe></div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/WMD0IPiRG_Y' style=' border:1px solid black' width='639'></iframe></div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/Rr6rR3Gnm_Y' style=' border:1px solid black' width='639'></iframe>/div>
</div>
</div>
<div class='row'>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/ycaZxEAeV2U' style=' border:1px solid black' width='639'></iframe></div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/_Utl1wfatSc' style=' border:1px solid black' width='639'></iframe></div>
</div>
<div class='col-md-4' style='padding:20px;'>
<div class='video-container'><iframe allowfullscreen='' frameborder='0' height='362' src='https://www.youtube.com/embed/nOh2vG_3V4c' style=' border:1px solid black' width='639'></iframe></div>