-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1221 lines (1055 loc) · 59.1 KB
/
index.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">
<head profile="http://www.w3.org/2005/10/profile">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.0.0/crypto-js.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous">
</script>
<meta charset="utf-8">
<title>Welcome To The Kittrell Company</title>
<meta property="og:image" content="https://thekittrellcompany.com/images/facebook_preview.png" />
<meta property="og:url" content="https://thekittrellcompany.com/" />
<meta property="og:title" content="The Kittrell Company" />
<meta property="og:description"
content="The Kittrell Company, a family–owned business, has been building homes and developing neighborhoods in the Richmond area for over 30 years." />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="The Kittrell Company is not going to build you prefabricated, toss-up homes. There is a high level of craftsmanship and care that goes into each stage of the process. From the first meeting, to going over the plans, to having you see each step of the way, to picking out fixtures, cabinets, and flooring, The Kittrell team is always in your corner....every step of the way.">
<meta name="keywords"
content="Over 30 years of home building experience, The Kittrell Company, success, building solid quality, custom, homes, personal choice, energy efficient, buyer, unique, advantage, Richmond, Virginia, 23226, 804-285-7869, Henrico, Hanover, Glen Allen, Richmond City and Chesterfield.">
<meta name="author" content="Joseph Edward">
<link rel="icon" type="image/png" href="/images/favicon.png">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/jpreloader.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/plugin.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/owl.theme.css" type="text/css">
<link rel="stylesheet" href="css/owl.transitions.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<!-- <link rel="stylesheet" href="css/style1.css" type="text/css"> -->
<script
async
>
var uniqueNum = new Date().getTime();
const cssElement = `<link rel="stylesheet" href="css/style.css?${uniqueNum}" type="text/css" \/>`
document.head.insertAdjacentHTML('beforeend',cssElement);
</script>
<!-- custom background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- color scheme -->
<link rel="stylesheet" href="css/color.css" type="text/css" id="colors">
<!-- load fonts -->
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="fonts/elegant_font/HTML_CSS/style.css" type="text/css">
<link rel="stylesheet" href="fonts/et-line-font/style.css" type="text/css">
<!-- revolution slider -->
<link rel="stylesheet" href="rs-plugin/css/settings.css" type="text/css">
<link rel="stylesheet" href="css/rev-settings.css" type="text/css">
</head>
<body id="homepage">
<div id="wrapper">
<!-- header begin -->
<header>
<div class="info">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col">Working Hours Monday - Friday <span
class="id-color"><strong>08:00-16:00</strong></span></div>
<div class="col">Toll Free <span class="id-color"><strong>1800.899.900</strong></span></div>
<!-- social icons -->
<div class="col social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-rss"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-envelope-o"></i></a>
</div>
<!-- social icons close -->
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- logo begin -->
<div id="logo">
<a href="index.html">
<img class="logo" src="images/logo.png" alt="">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<!-- mainmenu begin -->
<nav>
<ul id="mainmenu">
<li><a href="#wrapper">Home</a></li>
<li><a href="#section-about">About Us</a></li>
<li><a href="#section-featured">Featured Properties</a></li>
<li><a href="#section-home-plans">Home Plans</a></li>
<li><a href="#section-portfolio">Gallery</a></li>
<li><a href="#section-testimonial">Reviews</a></li>
<li><a href="#section-contact">Contact Us</a></li>
</ul>
</nav>
</div>
<!-- mainmenu close -->
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<!-- revolution slider begin -->
<section id="section-slider" class="fullwidthbanner-container" aria-label="section-slider">
<div id="revolution-slider">
<ul>
<li data-transition="slidehorizontal" data-slotamount="10" data-delay="7000"
data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-1.jpg" alt="The Kittrell Company Kitchen Space" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-2.jpg" alt="The Kittrell Company Living Room Space" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-3.jpg" alt="The Kittrell Company Bedroom" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-5.jpg" alt="The Kittrell Company Kitchen" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-4.jpg" alt="The Kittrell Company Fine Fixtures" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-6.jpg" alt="The Kittrell Company Living Rooms" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-7.jpg" alt="The Kittrell Company Bedroom Design" />
</li>
<li data-transition="slidehorizontal" data-slotamount="10" data-masterspeed="700" data-thumb="">
<!-- BACKGROUND IMAGE -->
<img src="images-slider/Slide-8.jpg" alt="The Kittrell Company Bathroom Design" />
</li>
</ul>
</div>
</section>
<!-- revolution slider close -->
<!-- section begin -->
<section id="section-about">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center wow fadeInUp">
<h1>What We Do</h1>
<div class="separator"><span><i class="fa fa-circle"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-md-4 wow fadeInLeft">
<h3><span class="id-color">Construction</span> Design</h3>
<div class="spacer-single"></div>
<img src="images/misc/construction-icon.png" class="img-responsive"
alt="Construction Design">
<div class="spacer-single"></div>
<p>The Kittrell Company is a full service home construction company. We specialize in the
finer details of home building that most cookie cutter, off the shelf operations do not
address. With over 35 years of making people happy with our attention to detail, we are
confident you will love the home design we have crafted for you. <a
href="#section-aboutbio" class="id-color">Learn More</a></p>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay=".2s">
<h3><span class="id-color">Architectural</span> Design</h3>
<div class="spacer-single"></div>
<img src="images/misc/architectural-icon.png" class="img-responsive"
alt="Architectural Design">
<div class="spacer-single"></div>
<p>We have the knowledge and experience to design beautiful floor plans catered to your
family’s needs. If a Master Suite is needed on the 1st floor, no worries. If a attic
space needs to be a 3rd floor, no worries. The Kittrell Company will deliver a great set
of home plans tailor fit to suit your specific needs. <a href="#section-aboutbio"
class="id-color">Learn More</a></p>
</div>
<div class="col-md-4 wow fadeInRight">
<h3><span class="id-color">Real Estate</span> Design</h3>
<div class="spacer-single"></div>
<img src="images/misc/real-estate-icon.png" class="img-responsive" alt="Real Estate">
<div class="spacer-single"></div>
<p>Having worked with numerous developers in the Richmond area, The Kittrell Company can
easily design a real estate theme in any new neighborhood emerging in the area. From a
15 lot neighborhood to a 150 lot neighborhood, our Real Estate Design is beyond compare.
Check out our extensive collection of home plans below. <a class="id-color"
href="#section-aboutbio">Learn More</a></p>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-steps" class="text-light">
<div class="container">
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!-- class="no-top no-bottom" -->
<section id="section-featured" class=" no-bottom" aria-label="section-portfolio">
<div class="container">
<div class="spacer-single"></div>
<!-- portfolio filter begin -->
<div class="row">
<div class="col-md-12 text-center">
<ul id="filters" class="wow fadeInUp" data-wow-delay="0s">
<li><a href="#" data-filter="*" class="selected">Featured Properties</a></li>
</ul>
</div>
</div>
<!-- portfolio filter close -->
</div>
<div id="featured" class="container row gallery threewide gallery de-gallery pf_full_width wow fadeInUp"
data-wow-delay=".3s"
style="display:flex;
justify-content: space-between;
flex-wrap: wrap;
width: auto;
/* height:auto */
"
>
<!-- gallery item -->
<!-- <div class="spacer"> -->
<div class="item residential border">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="featured/Featured_Irisdale.html">
<!-- featured-details-1.html" -->
<span class="overlay">
<span class="pf_text">
<span class="project-name">
3037 Irisdale Ave
</span>
</span>
</span>
</a>
<img class="imgHeight2"
src="/images/birme-1200x1000/featured_irisdale.jpg"
alt="The Kittrell Company 3025 Irisdale Ave - For Sale" />
</div>
<!-- close gallery item -->
</div>
<!-- close gallery item -->
<!-- </div> -->
<!-- <div class="spacer"> -->
<!-- gallery item -->
<div class="item residential border">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="featured/Featured_Kain.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
12294 Kain Road
</span>
</span>
</span>
</a>
<img class="imgHeight2"
src="images/birme-1200x1000/featured_kain.jpg"
alt="The Kittrell Company 12294 Kain Road - For Sale" />
</div>
<!-- close gallery item -->
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential border">
<div class="picframe">
<!-- <a class="simple-ajax-popup-align-top" href=""> -->
<!-- homeplans/homeplan_Powell_Leakes.html" -->
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Leake's Mill
</span>
</span>
</span>
<!-- </a> -->
<img class="imgHeight2" src="images/birme-1200x1000/Winterberry 6- Powell.jpg"
alt="The Kittrell Company Leake's Mill Development - For Sale" />
</div>
<!-- close gallery item -->
</div>
</div>
<div id="loader-area">
<div class="project-load"></div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!-- class="no-top no-bottom" -->
<section id="section-home-plans" class=" no-bottom" aria-label="section-portfolio">
<div class="container">
<div class="spacer-single"></div>
<!-- portfolio filter begin -->
<div class="row">
<div class="col-md-12 text-center">
<ul id="filters" class="wow fadeInUp" data-wow-delay="0s">
<li><a href="#" data-filter="*" class="selected">New Home Plans</a></li>
</ul>
</div>
</div>
<!-- portfolio filter close -->
</div>
<div id="homeplans" class="gallery full-gallery de-gallery pf_full_width wow fadeInUp"
data-wow-delay=".3s">
<div class="row">
<!-- gallery item -->
<div class="item hospitaly">
<div class="picframe imgHeight">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplans-georgetown.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Georgetown</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/Georgetown 2.jpg"
alt="The Kittrell Company Georgetown Plan" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item office">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplans-james.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">James</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/James .jpg"
alt="The Kittrell Company James Plan" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential ">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplans-cottage.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Cottage</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/1-cottage.jpg"
alt="The Kittrell Company Cottage Plan" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item commercial">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplans-potomac-i.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Potomac I</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/49884316516_e198cc84ac_k.jpg"
alt="The Kittrell Company Potomac I Plan" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplan_Shenandoah.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Shenandoah
</span>
</span>
</span>
</a>
<!-- class="imgHeight" -->
<img class="imgHeight" src="images/birme-1200x1000/Winterberry Lot 15- Shenandoah.jpg"
alt="The Kittrell Company Shenandoah Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplan_Powell_Leakes.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Powell
</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/Winterberry 6- Powell.jpg"
class="imgHeight" alt="The Kittrell Company Powell Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplan_Easton.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Easton
</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/20190918_141405.jpg"
alt="The Kittrell Company Easton Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplan_Helton.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Helton
</span>
</span>
</span>
</a>
<!-- class="imgHeight" -->
<img src="images/birme-1200x1000/Helton (1).jpg" class="imgHeight"
alt="The Kittrell Company Helton Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplan_Winslow_Leakes.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Winslow
</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/9-Robbins-II.jpg"
alt="The Kittrell Company Winslow Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top"
href="homeplans/homeplan_Westmoreland_Leakes.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Westmoreland
</span>
</span>
</span>
</a>
<img src="images/birme-1200x1000/Westmoreland A -2.jpg" class="imgHeight"
alt="The Kittrell Company Westmoreland Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential ">
<div class="picframe ">
<a class="simple-ajax-popup-align-top " href="homeplans/homeplan_Jackson_Leakes.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">
Jackson II
</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/Jackson II.jpg"
alt="The Kittrell Company Jackson Plan - For Sale" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="homeplans/homeplans-jackson.html">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Jackson</span>
</span>
</span>
</a>
<img class="imgHeight" src="images/birme-1200x1000/4-Jackson.jpg"
alt="The Kittrell Company Jackson Plan" />
</div>
</div>
<!-- close gallery item -->
</div>
<br />
<br />
</div>
<!-- close gallery item -->
</div>
<div id="loader-area">
<div class="project-load"></div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section class="no-bottom" aria-label="section-aboutbio">
<div class="container">
<div class="row whiteText">
<div id="section-aboutbio" class="col-md-6 col-md-offset-3 text-center wow fadeInUp">
<div class="spacer-single"></div>
<div class="spacer-single"></div>
<h1>Meet the Builders</h1>
<div class="separator"><span><i class="fa fa-circle"></i></span></div>
</div>
<img src="/images/background/kittrell-bio-banner.jpg" class="full-width" width="100%"
alt="The Kittrell Company philosophy: Your vision combined with our expertise is sure to produce a home your family will cherish for a very long time.">
</div>
<div class="spacer-single"></div>
<div class="spacer-single"></div>
<div class="row">
<div class="col-md-4 wow fadeInLeft">
<p>The Kittrell Company, a family-owned business, has been building homes and developing
neighborhoods in the Richmond area for over 35 years. Each build incorporates smart
design and superior craftsmanship supported by a firm foundation of honesty.</p>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay=".2s">
<p>Kittrell understands the importance of good communication and strives to maintain a close
relationship with their clients. As a small volume builder, they are able to listen to
your ideas and meet every individuals' need. You deserve that attention to detail when
having a home built.</p>
</div>
<div class="col-md-4 wow fadeInRight">
<p>Kittrell knows customer service produces customer satisfaction. Before, during, and after
the sale they will exceed expectations and provide you the with best service
possible. Let them show you how committed they are to building your
dreams. They are waiting to hear from you.</p>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!-- class="no-top no-bottom" -->
<section id="section-portfolio" class=" no-bottom" aria-label="section-portfolio">
<div class="container">
<div class="spacer-single"></div>
<!-- portfolio filter begin -->
<div class="row">
<div class="col-md-12 text-center">
<ul id="filters" class="wow fadeInUp" data-wow-delay="0s">
<li><a href="#" data-filter="*" class="selected">Gallery</a></li>
</ul>
</div>
</div>
<!-- portfolio filter close -->
</div>
<div id="gallery" class="gallery full-gallery de-gallery pf_full_width wow fadeInUp" data-wow-delay=".3s">
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="/php/gallery-viewer.php?item=Gallery-Pix-1"
imagesrc="Gallery-Pix-1" s>
<span class="overlay">
<span class="pf_text">
<span class="project-name">Large Colonial</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-1.jpg" alt="The Kittrell Company Large Colonial Home" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="/php/gallery-viewer.php?item=Gallery-Pix-2"
imagesrc="Gallery-Pix-2">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Handcrafted Kitchen</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-2.jpg" alt="The Kittrell Company Handcrafted Kitchen" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="/php/gallery-viewer.php?item=Gallery-Pix-3"
imagesrc="Gallery-Pix-3">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Customized Living Room</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-3.jpg" alt="The Kittrell Company Customized Living Room" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" href="/php/gallery-viewer.php?item=Gallery-Pix-4"
imagesrc="Gallery-Pix-4">
<span class="overlay">
<span class="pf_text">
<span class="project-name">High Quality Fixtures</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-4.jpg" alt="The Kittrell Company High Quality Fixtures" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-5"
href="/php/gallery-viewer.php?item=Gallery-Pix-5">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Attention to Detail</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-5.jpg" alt="The Kittrell Company Attention to Detail" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-6"
href="/php/gallery-viewer.php?item=Gallery-Pix-6">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Built in Storage</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-6.jpg" alt="The Kittrell Company Built in Storage" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-7"
href="/php/gallery-viewer.php?item=Gallery-Pix-7">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Design</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-7.jpg" alt="The Kittrell Company Design" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-8"
href="/php/gallery-viewer.php?item=Gallery-Pix-8">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Bathroom</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-8.jpg" alt="The Kittrell Company Bathroom" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-9"
href="/php/gallery-viewer.php?item=Gallery-Pix-9">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Bedroom</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-9.jpg" alt="The Kittrell Company Bedroom" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-10"
href="/php/gallery-viewer.php?item=Gallery-Pix-10">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Master Bathroom</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-10.jpg" alt="The Kittrell Company Master Bathroom" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-11"
href="/php/gallery-viewer.php?item=Gallery-Pix-11">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Customized Kitchens</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-11.jpg" alt="The Kittrell Company Customized Kitchens" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-12"
href="/php/gallery-viewer.php?item=Gallery-Pix-12">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Open Floor Plans</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-12.jpg" alt="The Kittrell Company Open FLoor Plans" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-13"
href="/php/gallery-viewer.php?item=Gallery-Pix-13">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Natural Lighting</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-13.jpg" alt="The Kittrell Company Natural Lighting" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-14"
href="/php/gallery-viewer.php?item=Gallery-Pix-14">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Relecting Craftsmanship</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-14.jpg"
alt="The Kittrell Company Reflecting Craftsmanship" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-15"
href="/php/gallery-viewer.php?item=Gallery-Pix-15">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Bright Social Areas</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-15.jpg" alt="The Kittrell Company Bright Social Areas" />
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a class="simple-ajax-popup-align-top" imagesrc="Gallery-Pix-16"
href="/php/gallery-viewer.php?item=Gallery-Pix-16">
<span class="overlay">
<span class="pf_text">
<span class="project-name">Bedroom</span>
</span>
</span>
</a>
<img src="images/gallery/Gallery-Pix-16.jpg" alt="The Kittrell Company Bedroom" />
</div>
</div>
<!-- close gallery item -->
</div>
<div id="loader-area">
<div class="project-load"></div>
</div>
</section>
<!-- section close -->
<!-- section begin
logo carousel section close -->
<!-- section begin -->
<section id="section-testimonial" class="text-light">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center wow fadeInUp">
<h1>Our Reviews</h1>
<div class="separator"><span><i class="fa fa-circle"></i></span></div>
<div class="spacer-single"></div>
</div>
</div>
<div id="testimonial-carousel" class="de_carousel wow fadeInUp" data-wow-delay=".3s">
<div class="col-md-6 item">
<div class="de_testi">
<blockquote>
<p>David,<br>
Tom & I feel so fortunate that you were our builder. We are so impressed
with your accountability in addressing our concerns during and after the
building process. You have our vote as the BEST builder in
Richmond!!</br><br>
Thank you!!<br>-Sue & Tom</p>
</blockquote>
</div>
</div>
<div class="col-md-6 item">
<div class="de_testi">
<blockquote>
<p>Dear David,<br>
Doug and i want you to know how much we enjoy our new home. The house very
much suites our life style and we are proud to call this address
home.<br><br>Gratefully,<br>-Jane and Doug
</p>
</blockquote>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-contact" class="no-bottom">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center wow fadeInUp">
<h1>Contact Us</h1>