-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-single-fullwidth.html
1101 lines (926 loc) · 60 KB
/
blog-single-fullwidth.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>
<!--
Theme Name: Elementy
Description: HTML/CSS
Author: Abcgomel
Designed & Coded by Abcgomel
-->
<html>
<head>
<title>Elementy - Responsive HTML5 Template</title>
<meta charset=utf-8 >
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="robots" content="index, follow" >
<meta name="keywords" content="HTML5 Template" >
<meta name="description" content="Elementy - Responsive HTML5 Template" >
<meta name="author" content="Vladimir Azarushkin">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#2a2b2f">
<!-- FAVICONS -->
<link rel="shortcut icon" href="images/favicon/favicon.png">
<link rel="apple-touch-icon" href="images/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-touch-icon-114x114.png">
<link rel="icon" sizes="192x192" href="images/favicon/icon-192x192.png">
<!-- CSS -->
<!-- GOOGLE FONT -->
<link href='http://fonts.googleapis.com/css?family=Poppins:400,600,300%7COpen+Sans:400,300,700' rel='stylesheet' type='text/css'>
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- ICONS ELEGANT FONT & FONT AWESOME & LINEA ICONS -->
<link rel="stylesheet" href="css/icons-fonts.css" >
<!-- CSS THEME -->
<link rel="stylesheet" href="css/style.css" >
<!-- ANIMATE -->
<link rel='stylesheet' href="css/animate.min.css">
<!-- IE Warning CSS -->
<!--[if lte IE 8]><link rel="stylesheet" type="text/css" href="css/ie-warning.css" ><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" type="text/css" href="css/ie8-fix.css" ><![endif]-->
<!-- Magnific popup, Owl Carousel Assets in style.css -->
<!-- CSS end -->
<!-- JS begin some js files in bottom of file-->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- LOADER -->
<div id="loader-overflow">
<div id="loader3" class="loader-cont">Please enable JS</div>
</div>
<div id="wrap" class="boxed ">
<div class="grey-bg"> <!-- Grey BG -->
<!--[if lte IE 8]>
<div id="ie-container">
<div id="ie-cont-close">
<a href='#' onclick='javascript:this.parentNode.parentNode.style.display="none"; return false;'><img src='images/ie-warn/ie-warning-close.jpg' style='border: none;' alt='Close'></a>
</div>
<div id="ie-cont-content" >
<div id="ie-cont-warning">
<img src='images/ie-warn/ie-warning.jpg' alt='Warning!'>
</div>
<div id="ie-cont-text" >
<div id="ie-text-bold">
You are using an outdated browser
</div>
<div id="ie-text">
For a better experience using this site, please upgrade to a modern web browser.
</div>
</div>
<div id="ie-cont-brows" >
<a href='http://www.firefox.com' target='_blank'><img src='images/ie-warn/ie-warning-firefox.jpg' alt='Download Firefox'></a>
<a href='http://www.opera.com/download/' target='_blank'><img src='images/ie-warn/ie-warning-opera.jpg' alt='Download Opera'></a>
<a href='http://www.apple.com/safari/download/' target='_blank'><img src='images/ie-warn/ie-warning-safari.jpg' alt='Download Safari'></a>
<a href='http://www.google.com/chrome' target='_blank'><img src='images/ie-warn/ie-warning-chrome.jpg' alt='Download Google Chrome'></a>
</div>
</div>
</div>
<![endif]-->
<!-- HEADER 1 FONT BLACK TRANSPARENT -->
<header id="nav" class="header header-1 bg-gray">
<div class="header-wrapper">
<div class="container-m-30 clearfix">
<div class="logo-row">
<!-- LOGO -->
<div class="logo-container-2">
<div class="logo-2">
<a href="index.html" class="clearfix">
<img src="images/logo.png" class="logo-img" alt="Logo">
</a>
</div>
</div>
<!-- BUTTON -->
<div class="menu-btn-respons-container">
<button id="menu-btn" type="button" class="navbar-toggle btn-navbar collapsed" data-toggle="collapse" data-target="#main-menu .navbar-collapse">
<span aria-hidden="true" class="icon_menu hamb-mob-icon"></span>
</button>
</div>
</div>
</div>
<!-- MAIN MENU CONTAINER -->
<div class="main-menu-container">
<div class="container-m-30 clearfix">
<!-- MAIN MENU -->
<div id="main-menu">
<div class="navbar navbar-default" role="navigation">
<!-- MAIN MENU LIST -->
<nav class="collapse collapsing navbar-collapse right-1024">
<ul class="nav navbar-nav">
<!-- MENU ITEM -->
<li class="parent">
<a href="#" class="open-sub"><div class="main-menu-title">Home</div></a>
<ul class="sub">
<li class="parent">
<a class="open-sub" href="#">Home</a>
<ul class="sub">
<li><a href="index.html">Home 1</a></li>
<li><a href="index2.html">Home 2</a></li>
<li><a href="index3.html">Home 3</a></li>
<li><a href="index4.html">Home 4</a></li>
<li><a href="index5.html">Home 5</a></li>
<li><a href="index6.html">Home 6</a></li>
<li><a href="index7.html">Home 7</a></li>
<li><a href="index8.html">Home 8</a></li>
<li><a href="index9.html">Home 9</a></li>
<li><a href="index10.html">Home 10</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Blog</a>
<ul class="sub">
<li><a href="index-blog.html">Blog Layout 1</a></li>
<li><a href="index-blog2.html">Blog Layout 2</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Landing</a>
<ul class="sub">
<li><a href="index-landing.html">Landing 1</a></li>
<li><a href="index-landing2.html">Landing 2</a></li>
<li><a href="index-landing3.html">Landing 3</a></li>
<li><a href="index-landing-app.html">App Landing</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Minimal Menu</a>
<ul class="sub">
<li><a href="index-side-menu.html">Side Menu</a></li>
<li><a href="index-full-screen-menu.html">Fullscreen Menu</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Finance</a>
<ul class="sub">
<li><a href="index-finance.html">Finance</a></li>
<li><a href="index-finance2.html">Finance 2</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Construction</a>
<ul class="sub">
<li><a href="index-construction.html">Construction</a></li>
<li><a href="index-construction2.html">Construction 2</a></li>
</ul>
</li>
<li><a href="index-portfolio.html">Portfolio</a></li>
<li><a href="index-photo.html">Photo</a></li>
<li><a href="index-shop.html">Shop</a></li>
<li><a href="index-cars.html">Car Tuning</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="index-travel.html">Travel</a></li>
<li><a href="index-magazine.html">Magazine</a></li>
<li><a href="intro.html#one-pages">One Page</a></li>
</ul>
</li>
<!-- MENU ITEM -->
<li class="parent">
<a href="#" class="open-sub"><div class="main-menu-title">Features</div></a>
<ul class="sub">
<li><a href="loaders.html">Loaders</a></li>
<li class="parent">
<a href="#" class="open-sub">Headers</a>
<ul class="sub">
<li><a href="index7.html">Boxed</a></li>
<li><a href="one-page-index8.html">Bottom</a></li>
<li><a href="index.html">Black Transp</a></li>
<li><a href="index-blog2.html">Black No Transp</a></li>
<li><a href="index2.html">White Transp</a></li>
<li><a href="index-blog.html">White No Transp</a></li>
<li><a href="index-shop.html">Shop</a></li>
<li><a href="index-photo.html">Side Menu</a></li>
<li><a href="index-side-menu.html">Min Menu</a></li>
<li><a href="index-full-screen-menu.html">Min Menu 2</a></li>
<li><a href="index-construction.html">Top Bar</a></li>
<li><a href="index-magazine.html">Magazine</a></li>
<li><a href="loaders.html">Country Flag</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Static Media</a>
<ul class="sub">
<li><a href="static-image.html">Image</a></li>
<li><a href="static-parallax.html">Parallax</a></li>
<li><a href="static-text-rotator.html">Text Rotator</a></li>
<li><a href="static-video.html">HTML5 Video</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Revo Slider</a>
<ul class="sub">
<li><a href="index-fullwidth.html">Full-Width</a></li>
<li><a href="index-fullscreen.html">Full-Screen</a></li>
<li><a href="index-video.html">Video</a></li>
<li><a href="index-ken.html">Ken Burns</a></li>
<li><a href="revo-slider-demo/start-here.html">All Demo</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Page Titles</a>
<ul class="sub">
<li><a href="page-title-small-grey.html">Small Grey</a></li>
<li><a href="page-title-small-white.html">Small White</a></li>
<li><a href="page-title-small-dark.html">Small Dark</a></li>
<li><a href="page-title-big-grey.html">Big Grey</a></li>
<li><a href="page-title-big-white.html">Big White</a></li>
<li><a href="page-title-big-dark.html">Big Dark</a></li>
<li><a href="page-title-big-img.html">Big Image</a></li>
<li><a href="page-title-large-img.html">Large Image</a></li>
<li><a href="page-title-large2.html">Large 2</a></li>
<li><a href="page-title-large3-img.html">Large 3 Image</a></li>
<li><a href="page-title-large4-center.html">Large 4 Center</a></li>
<li><a href="page-title-large5.html">Large 5</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Footers</a>
<ul class="sub">
<li><a href="index3.html#footer1">Footer 1</a></li>
<li><a href="index-landing-app.html#footer2">Footer 2</a></li>
<li><a href="about-me.html#footer3">Footer 3</a></li>
<li><a href="index2.html#footer4">Footer 4</a></li>
<li><a href="index-cars.html#footer5">Footer 5</a></li>
<li><a href="index-side-menu.html#footer6">Footer 6</a></li>
<li><a href="index.html#footer7">Footer 7</a></li>
<li><a href="404.html#footer8">Footer 8</a></li>
<li><a href="index-shop.html#footer9">Footer 9</a></li>
</ul>
</li>
</ul>
</li>
<!-- MEGA MENU ITEM -->
<li class="parent megamenu">
<a href="#" class="open-sub"><div class="main-menu-title">Elements</div></a>
<ul class="sub">
<li class="clearfix">
<div class="menu-sub-container">
<div class="box col-md-3 ">
<ul>
<li><a href="shortcodes.html#accordions"><div class="icon icon-basic-map"></div>Accordions</a></li>
<li><a href="shortcodes.html#alerts"><div class="icon icon-basic-exclamation"></div>Alerts</a></li>
<li><a href="animations.html"><div class="icon icon-basic-mixer2"></div> Animations</a></li>
<li><a href="typography.html#blockquotes"><div class="icon icon-basic-message-txt"></div>Blockquotes</a></li>
<li><a href="shortcodes.html#buttons"><div class="icon icon-basic-link"></div>Buttons</a></li>
<li><a href="shortcodes.html#carousels"><div class="icon icon-arrows-expand-horizontal1"></div>Carousels</a></li>
<li><a href="typography.html#code"><div class="icon icon-basic-webpage-txt"></div>Code</a></li>
<li><a href="shortcodes.html#counters-charts"><div class="icon icon-ecommerce-graph2"></div>Counters</a></li>
</ul>
</div>
<div class="box col-md-3">
<ul>
<li><a href="typography.html#dividers"><div class="icon icon-arrows-minus"></div>Dividers</a></li>
<li><a href="typography.html#dropcaps"><div class="icon icon-software-font-smallcaps"></div>Dropcaps</a></li>
<li><a href="shortcodes.html#flickr-link"><div class="icon icon-basic-webpage-multiple"></div>Flickr Feeds</a></li>
<li><a href="typography.html#heading"><div class="icon icon-arrows-drag-vert"></div>Headings</a></li>
<li><a href="typography.html#highlights"><div class="icon icon-ecommerce-sale"></div>Highlights</a></li>
<li><a href="icons.html"><div class="icon icon-basic-lightbulb"></div>Icons</a></li>
<li><a href="shortcodes.html#labels"><div class="icon icon-ecommerce-diamond"></div>Labels</a></li>
<li><a href="shortcodes.html#lightbox"><div class="icon icon-basic-webpage-multiple"></div>Lightbox</a></li>
</ul>
</div>
<div class="box col-md-3">
<ul>
<li><a href="typography.html#lists"><div class="icon icon-arrows-check"></div>Lists</a></li>
<li><a href="shortcodes.html#media"><div class="icon icon-music-play-button"></div>Media</a></li>
<li><a href="shortcodes.html#modals"><div class="icon icon-basic-webpage-img-txt"></div>Modals</a></li>
<li><a href="shortcodes.html#pagination"><div class="icon icon-arrows-stretch-horizontal1"></div>Pagination</a></li>
<li><a href="typography.html#popover"><div class="icon icon-arrows-keyboard-right"></div>Popover</a></li>
<li><a href="typography.html#pricing-tables"><div class="icon icon-basic-notebook"></div>Pricing Tables</a></li>
<li><a href="shortcodes.html#progress-bars"><div class="icon icon-basic-server2"></div>Progress Bars</a></li>
<li><a href="typography.html#tables"><div class="icon icon-arrows-squares"></div>Tables</a></li>
</ul>
</div>
<div class="box col-md-3 ">
<ul>
<li><a href="shortcodes.html#tabs"><div class="icon icon-basic-folder"></div>Tabs</a></li>
<li><a href="typography.html#testimonials"><div class="icon icon-arrows-keyboard-cmd-29"></div>Testimonials</a></li>
<li><a href="typography.html#cd-timeline"><div class="icon icon-arrows-drag-horiz"></div>Timeline</a></li>
<li><a href="shortcodes.html#toggles"><div class="icon icon-arrows-hamburger1"></div>Toggles</a></li>
<li><a href="typography.html#tooltips"><div class="icon icon-arrows-sign-right"></div>Tooltips</a></li>
<li><a href="shortcodes.html#twitter-link"><div class="icon icon-basic-world"></div>Twitter Feeds</a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<!-- MENU ITEM -->
<li class="parent">
<a href="#" class="open-sub"><div class="main-menu-title">Portfolio</div></a>
<ul class="sub">
<li><a href="index-portfolio.html">Home - Portfolio 1</a></li>
<li><a href="index-photo.html">Home - Portfolio 2</a></li>
<li><a href="portfolio-grid.html">Portfolio Grid</a></li>
<li class="parent">
<a href="#" class="open-sub">Boxed</a>
<ul class="sub">
<li><a href="portfolio-boxed-2col.html">2 Columns</a></li>
<li><a href="portfolio-boxed-3col.html">3 Columns</a></li>
<li><a href="portfolio-boxed-4col.html">4 Columns</a></li>
<li><a href="portfolio-boxed-5col.html">5 Columns</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Boxed bordered</a>
<ul class="sub">
<li><a href="portfolio-boxed-gut-2col.html">2 Columns</a></li>
<li><a href="portfolio-boxed-gut-3col.html">3 Columns</a></li>
<li><a href="portfolio-boxed-gut-4col.html">4 Columns</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Wide</a>
<ul class="sub">
<li><a href="portfolio-wide-2col.html">2 Columns</a></li>
<li><a href="portfolio-wide-3col.html">3 Columns</a></li>
<li><a href="portfolio-wide-4col.html">4 Columns</a></li>
<li><a href="portfolio-wide-5col.html">5 Columns</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Wide bordered</a>
<ul class="sub">
<li><a href="portfolio-wide-gut-2col.html">2 Columns</a></li>
<li><a href="portfolio-wide-gut-3col.html">3 Columns</a></li>
<li><a href="portfolio-wide-gut-4col.html">4 Columns</a></li>
<li><a href="portfolio-wide-gut-5col.html">5 Columns</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Masonry</a>
<ul class="sub">
<li><a href="portfolio-masonry-2col.html">2 Columns</a></li>
<li><a href="portfolio-masonry-3col.html">3 Columns</a></li>
<li><a href="portfolio-masonry-4col.html">4 Columns</a></li>
</ul>
</li>
<li class="parent">
<a href="#" class="open-sub">Portfolio Single</a>
<ul class="sub">
<li><a href="portfolio-single1.html">Single 1</a></li>
<li><a href="portfolio-single2.html">Single 2</a></li>
<li><a href="portfolio-single3.html">Single 3</a></li>
<li><a href="portfolio-single4.html">Single 4</a></li>
</ul>
</li>
</ul>
</li>
<!-- MENU ITEM -->
<li class="parent current">
<a href="#" class="open-sub"><div class="main-menu-title">Blog</div></a>
<ul class="sub">
<li><a href="index-blog.html">Home - Blog 1</a></li>
<li><a href="index-blog2.html">Home - Blog 2</a></li>
<li class="parent">
<a href="#" class="open-sub">Blog Masonry</a>
<ul class="sub">
<li><a href="blog-masonry-2col.html">2 Columns</a></li>
<li><a href="blog-masonry-3col.html">3 Columns</a></li>
<li><a href="blog-masonry-4col.html">4 Columns</a></li>
</ul>
</li>
<li><a href="blog-full-width.html">Blog Full Width</a></li>
<li><a href="blog-small-image.html">Blog Small Image</a></li>
<li><a href="blog-left-sidebar.html">Blog Left Sidebar</a></li>
<li><a href="blog-right-sidebar.html">Blog Right Sidebar</a></li>
<li class="parent">
<a href="#" class="current open-sub">Blog Single</a>
<ul class="sub">
<li><a href="blog-single-disqus.html">Disqus Comments</a></li>
<li><a href="blog-single-facebook.html">Facebook Comment</a></li>
<li><a href="blog-single-sidebar-right.html">Right Sidebar</a></li>
<li><a href="blog-single-sidebar-left.html">Left Sidebar</a></li>
<li><a class="current" href="blog-single-fullwidth.html">Fullwidth</a></li>
<li><a href="blog-single-fullwidth2.html">Fullwidth 2</a></li>
</ul>
</li>
</ul>
</li>
<!-- MENU ITEM -->
<li class="parent">
<a href="#" class="open-sub"><div class="main-menu-title">Shop</div></a>
<ul class="sub">
<li><a href="index-shop.html">Home - Shop</a></li>
<li><a href="shop-2-col.html">2 Columns</a></li>
<li><a href="shop-3-col.html">3 Columns</a></li>
<li><a href="shop-4-col.html">4 Columns</a></li>
<li><a href="shop-single.html">Shop Single</a></li>
<li><a href="shop-shoping-cart.html">Shoping Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
</li>
<!-- MEGA MENU ITEM -->
<li class="parent megamenu">
<a href="#" class="open-sub"><div class="main-menu-title">Pages</div></a>
<ul class="sub">
<li>
<div class="menu-sub-container">
<div class="box col-md-3 nofloat closed">
<h5 class="title open-sub">Pages 01</h5>
<ul>
<li><a href="typography.html">Typography</a></li>
<li><a href="grid-system.html">Grid System</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="services2.html">Services 2</a></li>
<li><a href="login.html">Login / Register</a></li>
</ul>
</div>
<div class="box col-md-3 nofloat closed">
<h5 class="title open-sub">Pages 02</h5>
<ul>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="coming-soon2.html">Coming Soon 2</a></li>
<li><a href="404.html">404 Error</a></li>
<li><a href="maintenance-page.html">Maintenance Page</a></li>
</ul>
</div>
<div class="box col-md-3 nofloat closed">
<h5 class="title open-sub">Pages 03</h5>
<ul>
<li><a href="about-us.html">About Us</a></li>
<li><a href="about-us-2.html">About Us 2</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="loaders.html">Loaders</a></li>
</ul>
</div>
<div class="box col-md-3 nofloat closed">
<h5 class="title open-sub">Pages 04</h5>
<ul>
<li><a href="faq.html">FAQ</a></li>
<li><a href="layout-full-width.html">Layout Full Width</a></li>
<li><a href="layout-left-sidebar.html">Layout Left Sidebar</a></li>
<li><a href="layout-right-sidebar.html">Layout Right Sidebar</a></li>
</ul>
</div>
</div>
</li>
</ul>
</li>
<!-- MENU ITEM -->
<li id="menu-contact-info-big" class="parent megamenu">
<a href="#" class="open-sub"><div class="main-menu-title">Contact</div></a>
<ul class="sub">
<li class="clearfix" >
<div class="menu-sub-container">
<div class="box col-md-3 menu-demo-info closed">
<h5 class="title open-sub">Contact Pages</h5>
<ul>
<li><a href="contact.html">Contact Version 1</a></li>
<li><a href="contact2.html">Contact Version 2</a></li>
</ul>
</div>
<div class="col-md-3 menu-contact-info">
<ul class="contact-list">
<li class="contact-loc clearfix">
<div class="loc-icon-container">
<div class="icon icon-basic-map main-menu-contact-icon"></div>
</div>
<div class="menu-contact-text-container">555 California str, Suite 100</div>
</li>
<li class="contact-phone clearfix">
<div class="loc-icon-container">
<div class="icon icon-basic-smartphone main-menu-contact-icon"></div>
</div>
<div class="menu-contact-text-container">1-80-100-10, 1-80-300-10</div>
</li>
<li class="contact-mail clearfix" >
<div class="loc-icon-container">
<div class="icon icon-basic-mail main-menu-contact-icon"></div>
</div>
<div class="menu-contact-text-container">
<a class="a-mail" href="mailto:info@haswell.com">info@haswell.com</a>
</div>
</li>
</ul>
</div>
<div class="col-md-6 menu-map-container hide-max-960 ">
<!-- Google Maps -->
<div class="google-map-container">
<img src="images/map-line.png" alt="alt">
</div>
<!-- Google Maps / End -->
</div>
</div>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<!-- END main-menu -->
</div>
<!-- END container-m-30 -->
</div>
<!-- END main-menu-container -->
<!-- SEARCH READ DOCUMENTATION -->
<ul class="cd-header-buttons">
<li><a class="cd-search-trigger" href="#cd-search"><span></span></a></li>
</ul> <!-- cd-header-buttons -->
<div id="cd-search" class="cd-search">
<form class="form-search" id="searchForm" action="page-search-results.html" method="get">
<input type="text" value="" name="q" id="q" placeholder="Search...">
</form>
</div>
</div>
<!-- END header-wrapper -->
</header>
<!-- PAGE TITLE LARGE 5 ABSOLUTE GRAY -->
<div class="page-title-large5-cont bg-gray">
<div class="container relative">
<div class="page-title-large5-text-cont">
<div>
<h1 class="page-title5">New trends in web design</h1>
</div>
<div class="post-info-large3 mt-10 font-poppins">
Jule 20<span class="slash-divider">/</span><a class="a-inv" href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Amanda Pollock</a><span class="slash-divider">/</span><a class="a-inv" href="#">Design</a>, <a class="a-inv" href="#">Trends</a>
</div>
</div>
</div>
</div>
<!-- CONTENT -->
<div class="page-section p-140-cont pb-50">
<div class="container">
<!-- IMG -->
<div class="post-prev-img mb-50">
<img src="images/blog/post-wide-6-big.jpg" alt="img"></a>
</div>
<!-- AUTHOR & TEXT -->
<div class="row">
<!-- AUTHOR -->
<div class="col-md-3 text-center mb-50">
<div>
<img alt="ava" class="img-circle" src="images/content/avatar-2.jpg" >
</div>
<div class="mt-15">
by <a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Amanda Pollock</a>
<div>Doodle inc.</div>
</div>
<div class="text-center mt-15">
<a class="a-inv p-5" href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel" title="Facebook" target="_blank"><i class="fa fa-facebook"></i></a>
<a class="a-inv p-5" href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel" title="Twitter" target="_blank"><i class="fa fa-twitter"></i></a>
<a class="a-inv p-5" href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel" title="Behance" target="_blank"><i class="fa fa-behance"></i></a>
</div>
</div>
<!-- TEXT -->
<div class="col-md-9 mb-50">
<p class="text-highlight mb-30">Maecenas volutpat, diam enim sagittis uam, id porta ulamis. Sed id dolor consectetur fermentum nibh vomat, ata umasnu purus. Maecenas volutpat, diam enim sagittis quam, id prta quam. Sed id dolor consectetur. Loremus fermentum nibh volutpat, accumsan purus.</p>
<p>Perspiciatis unde omnis iste natus error sit voluptatem accus anum doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Cras tellus enim, sagittis aer varius faucibus, molestie in dolor. Mauris molliadipisg elit, in vulputate est volutpat vitae.</p>
<h4 class="font-open-sans"><strong>Maecenas volutpat</strong></h4>
<p>Cras tellus enim, sagittis aer varius faucibus, molestie in dolor. Mauris molliadipisg elit, in vulputate est volutpat vitae. Pellentesque convallis nisl sit amet lacus luctus vel consequat ligula suscipit. Aliquam et metus sed tortor eleifend pretium non id urna. Fusce in augue leo, sed cursus nisl. Nullam vel tellus massa. Vivamus porttitor rutrum libero ac mattis. Aliquam congue malesuada mauris vitae dignissim.</p>
</div>
</div>
<!-- IMG & DESCRIPTION -->
<div class="row">
<!-- IMG -->
<div class="col-md-9 post-prev-img">
<img src="images/blog/post-wide-7.jpg" alt="img">
</div>
<!-- DESCRIPTION -->
<div class="col-md-3 mt-20">
<strong>Convallis nisl</strong>
<p >Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos</p>
</div>
</div>
<!-- TEXT -->
<div class="row mb-50">
<div class="col-md-9 col-md-offset-3 mt-30">
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Cras tellus enim, sagittis aer varius faucibus, molestie in dolor. Mauris molliadipisg elit, in vulputate est volutpat vitae. </p>
<blockquote class="mb-40 mt-40">
<p>Sed vitae fermentum diam, eget sollicitudin felis. Vestibulum massa arcu, tempor sit amet mollis ac, eleifend auctor turpis Pellentesque feu giat quis turpis quis bibendum</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
<p>Cras tellus enim, sagittis aer varius faucibus, molestie in dolor. Mauris molliadipisg elit, in vulputate est volutpat vitae. Pellentesque convallis nisl sit amet lacus luctus vel consequat ligula suscipit. Aliquam et metus sed tortor eleifend pretium non id urna. Fusce in augue leo, sed cursus nisl. Nullam vel tellus massa. Vivamus porttitor rutrum libero ac mattis. Aliquam congue malesuada mauris vitae dignissim.</p>
</div>
</div>
</div><!-- container end -->
<!-- IMG FULLSCREEN -->
<img src="images/blog/post-fullscreen.jpg" alt="img" style="width:100%">
<!-- TEXT & INFO -->
<div class="container">
<div class="row">
<div class="col-md-9 col-md-offset-3 mt-30">
<!-- TEXT -->
<div class="mb-80">
<h4 class="font-open-sans"><strong>Fusce in augue</strong></h4>
<p>Cras tellus enim, sagittis aer varius faucibus, molestie in dolor. Mauris molliadipisg elit, in vulputate est volutpat vitae. Pellentesque convallis nisl sit amet lacus luctus vel consequat ligula suscipit. Aliquam et metus sed tortor eleifend pretium non id urna. Fusce in augue leo, sed cursus nisl. Nullam vel tellus massa. Vivamus porttitor rutrum libero ac mattis. Aliquam congue malesuada mauris vitae dignissim.</p>
<pre class="mt-30 mb-30"><div class="logo-footer-cont">
<a href="index.html">
<img class="logo-footer" src="images/logo-footer.png" alt="logo">
</a>
</div></pre>
<p>Pellentesque venenatis tellus non purus tincidunt vitae ultrices tellus eleifend. Praesent quam augue, accumsan nec tempus dapibus, pharetra ac lacus. Nunc eleifend consequat justo id dapibus. In ut consequat massa. Nunc scelerisque suscipit leo nec imperdiet. </p>
<h4 class="font-open-sans"><strong>Nullam vel tellus</strong></h4>
<p>Pellentesque convallis nisl sit amet lacus luctus vel consequat ligula suscipit. Aliquam et metus sed tortor eleifend pretium non id urna. Fusce in augue leo, sed cursus nisl. Nullam vel tellus massa. Vivamus porttitor rutrum libero ac mattis. Aliquam congue malesuada mauris vitae dignissim.</p>
</div>
<!-- INFO -->
<div class="post-prev-more-cont mb-80 clearfix">
<div class="post-prev-more left">
<div class="tags">
<a href="">Design</a>
<a href="">Development</a>
<a href="">Minimal</a>
</div>
</div>
<div class="right" >
<a href="blog-single-sidebar-right.html#comments" class="post-prev-count"><span aria-hidden="true" class="icon_comment_alt"></span><span class="icon-count">4</span></a>
<a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel" class="post-prev-count"><span aria-hidden="true" class="icon_heart_alt"></span><span class="icon-count">53</span></a>
<a href="#" class="post-prev-count dropdown-toggle" data-toggle="dropdown" aria-expanded="false" >
<span aria-hidden="true" class="social_share"></span>
</a>
<ul class="social-menu dropdown-menu dropdown-menu-right" role="menu">
<li><a href="#"><span aria-hidden="true" class="social_facebook"></span></a>
</li>
<li><a href="#"><span aria-hidden="true" class="social_twitter"></span></a></li>
<li><a href="#"><span aria-hidden="true" class="social_dribbble"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- DIVIDER -->
<hr class="mt-0 mb-0">
<!-- WORK NAVIGATION -->
<div class="row">
<div class="col-md-12">
<div class="work-navigation clearfix">
<a href="#" class="work-prev"><span><span class="icon icon-arrows-left"></span> Prev</span></a>
<a href="#" class="work-all"><span>All Posts</span></a>
<a href="#" class="work-next"><span>Next <span class="icon icon-arrows-right"></span></span></a>
</div>
</div>
</div>
<!-- DIVIDER -->
<hr class="mt-0 mb-0">
<!-- RELATED POSTS -->
<h4 class="blog-page-title mt-50">Related Posts</h4>
<div class="row related-posts">
<!-- Post Item 1 -->
<div class="col-sm-6 col-md-4 col-lg-4 wow fadeIn pb-50" >
<div class="post-prev-img">
<a href="blog-single-sidebar-right.html"><img src="images/blog/post-prev-1.jpg" alt="img"></a>
</div>
<div class="post-prev-title">
<h3><a href="blog-single-sidebar-right.html">Time For Minimalism</a></h3>
</div>
<div class="post-prev-info">
Jule 10<span class="slash-divider">/</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">John Doe</a>
</div>
</div>
<!-- Post Item 2 -->
<div class="col-sm-6 col-md-4 col-lg-4 wow fadeIn pb-50" data-wow-delay="200ms" >
<div class="post-prev-img">
<a href="blog-single-sidebar-right.html"><img src="images/blog/post-prev-2.jpg" alt="img"></a>
</div>
<div class="post-prev-title">
<h3><a href="blog-single-sidebar-right.html">New Trends In Web Design</a></h3>
</div>
<div class="post-prev-info">
May 11<span class="slash-divider">/</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">John Doe</a>
</div>
</div>
<!-- Post Item 3 -->
<div class="col-sm-6 col-md-4 col-lg-4 wow fadeIn pb-50" data-wow-delay="400ms" >
<div class="post-prev-img">
<a href="blog-single-sidebar-right.html"><img src="images/blog/post-prev-3.jpg" alt="img"></a>
</div>
<div class="post-prev-title">
<h3><a href="blog-single-sidebar-right.html">The Sound Of Life</a></h3>
</div>
<div class="post-prev-info">
December 21<span class="slash-divider">/</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">John Doe</a>
</div>
</div>
</div>
</div><!-- container end -->
</div><!-- page section end -->
<!-- COMMENTS -->
<div class="bg-gray-light">
<div class="container">
<div class="plr-50 plr-xs-0">
<!-- COMMENTS -->
<div id="comments" class="mt-140 mt-md-100">
<h4 class="blog-page-title font-26 mb-15">Comments<small><span class="slash-divider">/</span> 4</small></h4>
<ul class="media-list text comment-list">
<!-- Comment Item -->
<li class="media comment-item">
<a class="pull-left" href="#"><img class="media-object comment-avatar" src="images/content/avatar-3.jpg" alt="ava" ></a>
<div class="media-body">
<div class="comment-item-title">
<div class="comment-author">
<a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">John Doe</a>
</div>
<div class="comment-date">
Jul 21, 2015, at 10:10<span class="slash-divider">-</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Reply</a>
</div>
</div>
<p class="pb-30">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at magna ut ante eleifend eleifend.</p>
<!-- Comment of second level -->
<div class="media comment-item comment-reply">
<a class="pull-left" href="#"><img class="media-object comment-avatar" src="images/content/avatar-4.jpg" alt="ava"></a>
<div class="media-body">
<div class="comment-item-title">
<div class="comment-author">
<a href="#">Simon Morgan</a>
</div>
<div class="comment-date">
Jul 21, 2015, at 10:10<span class="slash-divider">-</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Reply</a>
</div>
</div>
<p class="pb-30">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at magna ut ante eleifend eleifend.</p>
</div>
</div>
<!-- End Comment of second level -->
</div>
</li>
<!-- End Comment Item -->
<!-- Comment Item -->
<li class="media comment-item">
<a class="pull-left" href="#"><img class="media-object comment-avatar" src="images/content/avatar-5.jpg" alt="ava"></a>
<div class="media-body">
<div class="comment-item-title">
<div class="comment-author">
<a href="#">Hugh Turner</a>
</div>
<div class="comment-date">
Jul 21, 2015, at 10:10<span class="slash-divider">-</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Reply</a>
</div>
</div>
<p class="pb-30">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at magna ut ante eleifend eleifend.</p>
</div>
</li>
<!-- End Comment Item -->
<!-- Comment Item -->
<li class="media comment-item">
<a class="pull-left" href="#"><img class="media-object comment-avatar" src="images/content/avatar-3.jpg" alt="ava"></a>
<div class="media-body">
<div class="comment-item-title">
<div class="comment-author">
<a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">John Doe</a>
</div>
<div class="comment-date">
Jul 21, 2015, at 10:10<span class="slash-divider">-</span><a href="http://themeforest.net/user/abcgomel/portfolio?ref=abcgomel">Reply</a>
</div>
</div>
<p class="pb-30">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at magna ut ante eleifend eleifend.</p>
</div>
</li>
<!-- End Comment Item -->
</ul>
</div>
<!-- DIVIDER -->
<hr class="mt-30 mb-0">
<!-- LEAVE A COMMENT -->
<!-- CONTACT FORM -->
<div class="bg-white leave-comment-cont mb-140">
<!-- TITLE -->
<h4 class="blog-page-title mt-50 mb-25">Leave a Comment</h4>
<div class="contact-form-container">
<form id="contact-form" action="#" method="POST">
<div class="row">
<div>
<div class="col-md-6 mb-30">
<!-- <label>Your name *</label> -->
<input type="text" value="" data-msg-required="Please enter your name." maxlength="100" class="form-control" name="name" id="name" placeholder="Name" required>
</div>
<div class="col-md-6 mb-30">
<!-- <label>Your email address *</label> -->
<input type="email" value="" data-msg-required="Please enter your email address." data-msg-email="Please enter a valid email address." maxlength="100" class="form-control" name="email" id="email" placeholder="Email" required>
</div>
</div>
</div>
<div class="row">
<div >
<div class="col-md-12 mb-40">
<!-- <label>Message *</label> -->
<textarea maxlength="5000" data-msg-required="Please enter your message." rows="3" class="form-control" name="message" id="message" placeholder="Message" required></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<input type="submit" value="SEND MESSAGE" class="button medium rounded gray font-open-sans" data-loading-text="Loading...">
</div>
</div>
</form>
<div class="alert alert-success hidden" id="contactSuccess">
<strong>Success!</strong> Your message has been sent to us.
</div>
<div class="alert alert-danger hidden" id="contactError">
<strong>Error!</strong> There was an error sending your message.
</div>
</div>
</div>
</div>
</div><!-- container end -->
</div><!-- comments end -->
<!-- FOOTER 4 BLACK -->
<footer id="footer4" class="page-section pt-95 pb-50 footer2-black">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3 widget">
<div class="logo-footer-cont">
<a href="index.html">
<img class="logo-footer" src="images/logo-footer-white.png" alt="logo">
</a>
</div>
<div class="footer2-text-cont">
<address>
555 California str, Suite 100<br>
San Francisco, CA 94107
</address>
</div>
<div class="footer2-text-cont">
1-800-312-2121<br>
<a class="a-text" href="mailto:info@haswell.com">info@elementy.com</a>
</div>
<div class="footer2-text-cont a-text-main-cont">
<a class="popup-gmaps mfp-plugin font-poppins" href="https://maps.google.com/maps?q=555+California+Street+Building,+California+Street,+San+Francisco,&hl=en&t=v&hnear=555+California+Street+Building,+California+Street,+San+Francisco">Open Map</a>
</div>
</div>
<div class="col-md-3 col-sm-3 widget">
<h4>Navigate</h4>
<ul class="links-list a-text-cont a-text-main-cont font-poppins">