-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_sofas.html
2142 lines (1658 loc) · 118 KB
/
home_sofas.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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Mobile Web-app fullscreen -->
<meta name="description" content="Whether you're relaxing in front of the TV or entertaining guests,
these stylish and comfortable home and office sofas are a smart and versatile choice.
You'll appreciate how these casual designs work well in any room or office setting. ">
<meta name="keywords" content=" sofa, sofas, home sofs, office sofas, home sofas in gh, home sofas in accra, home sofas in ghana,
office sofas in gh, office sofas in accra, office sofas in ghana, sofas in accra, sofas in gh, sofas in ghana,
cheap sofas, cheap sofas in accra, cheap sofas in gh, cheap sofas in ghana, affordable sofas,
affordable sofas in accra, affordable sofas in gh, affordable sofas in ghana, modern sofa designs
cheap office sofas, cheap office sofas in accra, cheap office sofas in gh, cheap office sofas in ghana, affordable office sofas,
affordable office sofas in accra, affordable office sofas in gh, affordable office sofas in ghana, modern office sofa designs
cheap home sofas, cheap home sofas in accra, cheap home sofas in gh, cheap home sofas in ghana, affordable home sofas,
affordable home sofas in accra, affordable home sofas in gh, affordable home sofas in ghana, modern home sofa designs ">
<meta name="robots" content="index, nofollow">
<meta name="language" content="English">
<meta name="revisit-after" content="2 days">
<meta name="author" content="Louis Mahunu Jnr">
<link rel="icon" href="icon.png">
<!-- Meta tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="icon.png">
<!--Title-->
<title>Home & Office Sofas</title>
<!--CSS styles-->
<link rel="stylesheet" media="all" href="css/bootstrap.css" />
<link rel="stylesheet" media="all" href="css/animate.css" />
<link rel="stylesheet" media="all" href="css/font-awesome.css" />
<link rel="stylesheet" media="all" href="css/furniture-icons.css" />
<link rel="stylesheet" media="all" href="css/linear-icons.css" />
<link rel="stylesheet" media="all" href="css/magnific-popup.css" />
<link rel="stylesheet" media="all" href="css/owl.carousel.css" />
<link rel="stylesheet" media="all" href="css/ion-range-slider.css" />
<link rel="stylesheet" media="all" href="css/theme.css" />
<link rel="stylesheet" media="all" href="css/style.css" />
<link href="//www.findberry.com/search/css/framebox.css" rel="stylesheet" type="text/css" />
<!--Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600&subset=latin-ext" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="page-loader"></div>
<div class="wrapper">
<!--Use class "navbar-fixed" or "navbar-default" -->
<!--If you use "navbar-fixed" it will be sticky menu on scroll (only for large screens)-->
<!-- ======================== Navigation ======================== -->
<nav class="navbar-fixed">
<div class="container">
<!-- ========== Top navigation ========== -->
<div class="navigation navigation-top clearfix">
<ul>
<!--add active class for current page-->
<li><a href="https://www.facebook.com/gracefilledventures/" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/gfventures?lang=en" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/gracefilledventures/?hl=en" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a href="javascript:void(0);" class="open-search"><i class="icon icon-magnifier"></i></a></li>
<!--Currency selector-->
<!--Language selector-->
</ul>
</div> <!--/navigation-top-->
<!-- ========== Main navigation ========== -->
<div class="navigation navigation-main">
<!-- Setup your logo here-->
<a href="index.html" class="logo"><img src="assets/images/logo1.png" alt="" /></a>
<!-- Mobile toggle menu -->
<a href="#" class="open-menu"><i class="icon icon-menu"></i></a>
<!-- Convertible menu (mobile/desktop)-->
<div class="floating-menu">
<!-- Mobile toggle menu trigger-->
<div class="close-menu-wrapper">
<span class="close-menu"><i class="icon icon-cross"></i></span>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<!-- Multi-content dropdown -->
<!-- Single dropdown-->
<!-- Furniture icons in dropdown-->
<li>
<a href="product_category.html"><mark>Products</mark> <span class="open-dropdown"><i class="fa fa-angle-down"></i></span></a>
<div class="navbar-dropdown">
<div class="navbar-box">
<!-- box-1 (left-side)-->
<!--/box-1-->
<!-- box-2 (right-side)-->
<div class="box-2 ">
<div class="clearfix categories">
<div class="row">
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="home_sofas.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon8.png" alt="" /></i>
<figcaption><mark>Home/Office Sofas</mark></figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="swivel_chairs.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon1.png" alt="" /></i>
<figcaption>Swivel Chairs</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="office_tables.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon3.png" alt="" /></i>
<figcaption>Office Desks</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="conference_tables.html">
<figure>
<i class="f-icon"><img src="assets/images/icons/png/icon15.png" alt="" /></i>
<figcaption>Conference Tables</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="file_cabinet.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon18.png" alt="" /></i>
<figcaption>Cabinets</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="office_workstations.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon12.png" alt="" /></i>
<figcaption>Workstations</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="classroom_furniture.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon5.png" alt="" /></i>
<figcaption>Classroom Furniture</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="dining_set.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon6.png" alt="" /></i>
<figcaption>Dining Chairs</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="center_tables_chairs.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon19.png" alt="" /></i>
<figcaption>Center Tables</figcaption>
</figure>
</a>
</div>
<!--icon item-->
<div class="col-sm-3 col-xs-6">
<a href="waiting_chairs.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon11.png" alt="" /></i>
<figcaption>Waiting Chairs</figcaption>
</figure>
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="visitors_chairs.html">
<figure>
<i class="f-icon "><img src="assets/images/icons/png/icon23.png" alt="" /></i>
<figcaption>Visitors/Conference Chairs</figcaption>
</figure>
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="kitchen.html">
<figure>
<i class="f-icon f-icon-kitchen"></i>
<figcaption>Kitchen</figcaption>
</figure>
</a>
</div>
<div class="col-sm-3 col-xs-6">
<a href="wardrobe.html">
<figure>
<i class="f-icon f-icon-wardrobe"></i>
<figcaption>Wardrobe</figcaption>
</figure>
</a>
</div>
<!--icon item-->
</div> <!--/row-->
</div> <!--/categories-->
</div><!--/box-2-->
</div> <!--/navbar-box-->
</div> <!--/navbar-dropdown-->
</li>
<!-- Mega menu dropdown -->
<!-- Simple menu link-->
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div> <!--/floating-menu-->
</div> <!--/navigation-main-->
<div class="search-wrapper">
<!-- Search form -->
<form action="//www.findberry.com/search/" method="get" id="sr_iframe">
<input type="hidden" name="wid" value="13225" />
<input id="sr_searchbox" type="text" name="query" size="35" />
<input id="sr_searchbutton" type="submit" value="Search" /><br />
</form>
</div>
</div> <!--/container-->
</nav>
<!-- ======================== Main header ======================== -->
<section class="main-header" style="background-image:url(assets/images/products/Home_&_Office_Sofas/home20.jpg)">
<header>
<div class="container">
<h1 class="h2 title">Products</h1>
<ol class="breadcrumb breadcrumb-inverted">
<li><a href="index.html"><span class="icon icon-home"></span></a></li>
<li><a href="product_category.html">Product Category</a></li>
<li><a href="home_sofas.html"><mark>Home & Office Sofas</mark></a></li>
</ol>
</div>
</header>
</section>
<!-- ======================== Product ======================== -->
<section class="product">
<div class="main">
<div class="container">
<div class="row product-flex">
<!-- product flex is used only for mobile order -->
<!-- on mobile 'product-flex-info' goes bellow gallery 'product-flex-gallery' -->
<div class="col-md-4 col-sm-12 product-flex-info">
<div class="clearfix">
<!-- === product-title === -->
<h1 class="title" data-title="Home & Office Sofas">Home & Office Sofas </h1>
<header>
<div class="col-md-8 col-lg-12">
<h4></h4>
<p>
Whether you're relaxing in front of the TV or entertaining guests,
these stylish and comfortable home and office sofas are a smart and versatile choice.
You'll appreciate how these casual designs work well in any room or office setting.
</p>
<p>
Featuring a variety of finishes and timeless stationary designs that work
well in any home or office for a looks that lasts.
</p>
</div>
</header>
<!--/clearfix-->
</div> <!--/product-info-wrapper-->
</div> <!--/col-md-4-->
<!-- === product item gallery === -->
<div class="col-md-8 col-sm-12 product-flex-gallery">
<!-- === add to cart === -->
<!-- === product gallery === -->
<div class="owl-slider">
<a ><img src="assets/images/products/Home_&_Office_Sofas/1.jpg" alt="" height="500" /></a>
<a ><img src="assets/images/products/Home_&_Office_Sofas/2.jpg" alt="" height="500" /></a>
<a ><img src="assets/images/products/Home_&_Office_Sofas/3.jpg" alt="" height="500" /></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- === product-info === -->
<div class="info">
<div class="container">
<div class="row">
<!-- === product-designer === -->
<!--/col-md-4-->
<!-- === nav-tabs === -->
<div class="col-md-8 col-lg-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active">
<a href="#designer" aria-controls="designer" role="tab" data-toggle="tab">
<i class="icon icon-user"></i>
<span>Collection</span>
</a>
</li>
</ul>
<!-- === tab-panes === -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="designer">
<div class="content">
<!-- === designer collection title === -->
</div> <!--/content-->
</div> <!--/tab-pane-->
<!-- ============ tab #2 ============ -->
<!-- ============ tab #3 ============ -->
<!-- ============ ratings ============ -->
<!--/content-->
</div> <!--/tab-pane-->
</div> <!--/tab-content-->
</div>
</div> <!--/row-->
</div> <!--/container-->
<section class="products">
<div class="container">
<div class="row">
<!-- === product-items === -->
<div class="col-md-12 col-xs-12">
</br>
<h2>Home & Office Sofa Types</h2>
<div class="sort-bar clearfix">
<div class="sort-results pull-right">
<!--Showing result per page-->
<!--Items counter-->
<span>Showing <strong>12</strong> of <strong>12</strong> items</span>
</div>
</div>
<div class="row">
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="1" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid1" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid1" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2302C/SF2302C FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid1">SF2302C</a></h2>
</div>
</div>
</article>
</div>
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="2" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid2" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid2" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2315C/SF2315C FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid2">SF2315C</a></h2>
</div>
</div>
</article>
</div>
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="3" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid3" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid3" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2317C/SF2317 FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid3">SF2317C</a></h2>
</div>
</div>
</article>
</div>
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="4" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid4" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid4" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2349C/SF2349C FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid4">SF2349C</a></h2>
</div>
</div>
</article>
</div>
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="5" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid5" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid5" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2391A/SF2391A FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid5">SF2391A</a></h2>
</div>
</div>
</article>
</div>
<!-- === product-item === -->
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="6" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid6" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid6" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2391C/SF2391C FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid6">SF2391C</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="7" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid7" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid7" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2818/SF2818 FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid7">SF2818</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="8" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid8" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid8" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2969/SF2969 FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid8">SF2969</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="9" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid9" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid9" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2969D/SF2969D FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid9">SF2969D</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="10" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid10" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid10" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF2995C/SF2991C FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid10">SF2995C</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="11" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid11" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid11" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF3030/SF3030 FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid11">SF3030</a></h2>
</div>
</div>
</article>
</div>
<div class="col-md-3 col-xs-5">
<article>
<div class="info" id="myDIV">
<span >
<a href="#" class="overlay-item-click" data-overlay="12" data-title="Ratings & Reviews"><i class="icon icon-thumbs-up"></i></a>
</span>
<span>
<a href="#productid12" class="mfp-open" data-title=" View"><i class="icon icon-eye"></i></a>
</span>
</div>
<div class="figure-grid">
<div class="image">
<a href="#productid12" class="mfp-open">
<img src="assets/images/products/Home_&_Office_Sofas/SF3605/SF3605 FRONT.jpg" alt="" width="360" />
</a>
</div>
<div class="text">
<h2 class="title h4"><a href="#productid12">SF3605</a></h2>
</div>
</div>
</article>
</div>
</div><!--/row-->
<!--Pagination-->
</div> <!--/product items-->
</div><!--/row-->
<!-- ======================== Product info popup - quick view ======================== -->
</div><!--/container-->
</section><!--/products-->
<!-- ======================== Product info popup - quick view ======================== -->
<div class="popup-main mfp-hide" id="productid1">
<!-- === product popup === -->
<div class="product">
<!-- === popup-title === -->
<div class="popup-title">
<div class="h1 title">Home & Office Sofa <small>SF2302C</small></div>
</div>
<!-- === product gallery === -->
<div class="owl-product-gallery">
<img src="assets/images/products/Home_&_Office_Sofas/SF2302C/SF2302C BACK.jpg" alt="" width="640" />
<img src="assets/images/products/Home_&_Office_Sofas/SF2302C/SF2302C FRONT.jpg" alt="" width="640" />
<img src="assets/images/products/Home_&_Office_Sofas/SF2302C/SF2302C SIDE.jpg" alt="" width="640" />
</div>
<!-- === product-popup-info === -->
<div class="popup-content">
<div class="product-info-wrapper">
<div class="row">
<!-- === left-column === -->
<div class="col-sm-6">
<div class="info-box">
<strong>Product Type</strong>
<span>Home & Office Furniture</span>
</div>
<div class="info-box">
<strong>Product Code</strong>
<span>SF2302C</span>
</div>
<div class="info-box">
<strong>Availability</strong>
<span><i class="fa fa-check-square-o"></i> in stock</span>
</div>
</div>
<!-- === right-column === -->
<div class="col-sm-6">
<div class="info-box">
<strong>Available Colors include</strong>
<div class="product-colors clearfix">
<span class="color-btn color-btn-red"></span>
<span class="color-btn color-btn-blue"></span>
<span class="color-btn color-btn-green"></span>
<span class="color-btn color-btn-gray"></span>
<span class="color-btn color-btn-biege"></span>
</div>
</div>
<div class="info-box">
<strong>Available Sizes include</strong>
<div class="product-colors clearfix">
<span class="color-btn color-btn-biege">S</span>
<span class="color-btn color-btn-biege">M</span>
<span class="color-btn color-btn-biege">XL</span>
<span class="color-btn color-btn-biege">XXL</span>
</div>
</div>
</div>
</div><!--/row-->
</div> <!--/product-info-wrapper-->
</div><!--/popup-content-->
<!-- === product-popup-footer === -->
<div class="popup-table">
<div class="popup-cell">
</div>
<div class="popup-cell">
<div class="popup-buttons">
<a href="contact.html"><span class="icon icon-eye"></span> <span class="hidden-xs">Contact Us</span></a>
</div>
</div>
</div>
</div> <!--/product-->
</div> <!--popup-main-->
<div class="popup-main mfp-hide" id="productid2">
<!-- === product popup === -->
<div class="product">
<!-- === popup-title === -->
<div class="popup-title">
<div class="h1 title">Home & Office Sofa <small>SF2315C</small></div>
</div>
<!-- === product gallery === -->
<div class="owl-product-gallery">
<img src="assets/images/products/Home_&_Office_Sofas/SF2315C/SF2315C BACK.jpg" alt="" width="640" />
<img src="assets/images/products/Home_&_Office_Sofas/SF2315C/SF2315C FRONT.jpg" alt="" width="640" />
<img src="assets/images/products/Home_&_Office_Sofas/SF2315C/SF2315C SIDE.jpg" alt="" width="640" />
</div>
<!-- === product-popup-info === -->
<div class="popup-content">
<div class="product-info-wrapper">
<div class="row">
<!-- === left-column === -->
<div class="col-sm-6">
<div class="info-box">
<strong>Product Type</strong>
<span>Home & Office Furniture</span>
</div>
<div class="info-box">
<strong>Product Code</strong>
<span>SF2315C</span>
</div>
<div class="info-box">
<strong>Availability</strong>
<span><i class="fa fa-check-square-o"></i> in stock</span>
</div>
</div>
<!-- === right-column === -->
<div class="col-sm-6">
<div class="info-box">
<strong>Available Colors include</strong>
<div class="product-colors clearfix">
<span class="color-btn color-btn-red"></span>
<span class="color-btn color-btn-blue"></span>
<span class="color-btn color-btn-green"></span>
<span class="color-btn color-btn-gray"></span>
<span class="color-btn color-btn-biege"></span>
</div>
</div>
<div class="info-box">
<strong>Available Sizes include</strong>
<div class="product-colors clearfix">
<span class="color-btn color-btn-biege">S</span>
<span class="color-btn color-btn-biege">M</span>
<span class="color-btn color-btn-biege">XL</span>
<span class="color-btn color-btn-biege">XXL</span>
</div>
</div>
</div>
</div><!--/row-->
</div> <!--/product-info-wrapper-->
</div><!--/popup-content-->
<!-- === product-popup-footer === -->
<div class="popup-table">
<div class="popup-cell">
</div>
<div class="popup-cell">
<div class="popup-buttons">
<a href="contact.html"><span class="icon icon-eye"></span> <span class="hidden-xs">Contact Us</span></a>