-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1542 lines (1403 loc) · 87.9 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Favicon -->
<link rel="icon" href="favicon-32x32.png" type="image/png">
<title>Bino Landing Page</title>
<!-- CSS Links -->
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate.min.css">
<!-- Bootstrap CSS CDN Link -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Default CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- 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://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Menu Section Start -->
<div class="custom_width">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg navbar-light menu_section">
<div class="logo">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="Logo" />
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<span>
<i class="fas fa-bars" style="color:#fff; font-size:28px;"></i>
</span>
</button>
<div class="collapse navbar-collapse menu" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#history">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#recent_work_section">PORTFOLIO</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#bloc_section">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact_section">CONTACT</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="javascript:void(0)" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
All Pages
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#history">History</a>
<a class="dropdown-item" href="#recent_work_section">Portfolio</a>
<a class="dropdown-item" href="#bloc_section">Blog</a>
<a class="dropdown-item" href="#contact_section">CONTACT</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div><!-- Menu Section End -->
<!-- Header Section Start -->
<section class="custom_width">
<div class="header_slider owl-carousel owl-theme">
<div class="single_slide_item header_bg_1">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 offset-xl-2 text-center">
<div class="header_content">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="header_bars">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="header_btn">
<a href="#">GET STARTED NOW</a>
<a href="#">GET STARTED NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- For CSS Shape -->
<div class="header_section_shape"></div>
<!-- For Header Footer Icon -->
<div class="header_bottom_icon_bg"></div>
<div class="header_bottom_icon">
<a href="https://asaduzzamanrana.com" target="_blank"><i class="fas fa-anchor"></i></a>
</div>
</div><!-- single_slide_item / -->
<div class="single_slide_item header_bg_2">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 offset-xl-2 text-center">
<div class="header_content">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="header_bars">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="header_btn">
<a href="#">GET STARTED NOW</a>
<a href="#">GET STARTED NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- For CSS Shape -->
<div class="header_section_shape"></div>
<!-- For Header Footer Icon -->
<div class="header_bottom_icon_bg"></div>
<div class="header_bottom_icon">
<a href="https://asaduzzamanrana.com" target="_blank"><i class="fas fa-anchor"></i></a>
</div>
</div><!-- single_slide_item / -->
<div class="single_slide_item header_bg_3">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 offset-xl-2 text-center">
<div class="header_content">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="header_bars">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="header_btn">
<a href="#">GET STARTED NOW</a>
<a href="#">GET STARTED NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- For CSS Shape -->
<div class="header_section_shape"></div>
<!-- For Header Footer Icon -->
<div class="header_bottom_icon_bg"></div>
<div class="header_bottom_icon">
<a href="https://asaduzzamanrana.com" target="_blank"><i class="fas fa-anchor"></i></a>
</div>
</div><!-- single_slide_item / -->
<div class="single_slide_item header_bg_4">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 offset-xl-2 text-center">
<div class="header_content">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="header_bars">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="header_btn">
<a href="#">GET STARTED NOW</a>
<a href="#">GET STARTED NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- For CSS Shape -->
<div class="header_section_shape"></div>
<!-- For Header Footer Icon -->
<div class="header_bottom_icon_bg"></div>
<div class="header_bottom_icon">
<a href="https://asaduzzamanrana.com" target="_blank"><i class="fas fa-anchor"></i></a>
</div>
</div><!-- single_slide_item / -->
<div class="single_slide_item header_bg_5">
<div class="container-fluid">
<div class="row">
<div class="col-xl-8 offset-xl-2 text-center">
<div class="header_content">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="header_bars">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum has been the industry's standard dummy text ever since the 1500s, when an
unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<div class="header_btn">
<a href="#">GET STARTED NOW</a>
<a href="#">GET STARTED NOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- For CSS Shape -->
<div class="header_section_shape"></div>
<!-- For Header Footer Icon -->
<div class="header_bottom_icon_bg"></div>
<div class="header_bottom_icon">
<a href="https://asaduzzamanrana.com" target="_blank"><i class="fas fa-anchor"></i></a>
</div>
</div><!-- single_slide_item / -->
</div><!-- header_slider / -->
</section><!-- Header Section End -->
<!-- Testimonail Sart -->
<section class="custom_width">
<div class="container">
<div class="row text-center">
<div class="testimonial_area owl-carousel owl-theme">
<div class="col-md-33">
<div class="testimonial_content">
<div class="testimonial_icon">
<span><i class="fas fa-glasses"></i></span>
</div>
<h4>SLEEK DESIGN</h4>
<div class="border_bar"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let. Lorem Ipsum has
been the industry.
</p>
</div><!-- testimonial_content / -->
</div><!-- col / -->
<div class="col-md-33">
<div class="testimonial_content">
<div class="testimonial_icon">
<span><i class="far fa-heart"></i></span>
</div>
<h4>CLEAN CODE</h4>
<div class="border_bar"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let. Lorem Ipsum has
been the industry.
</p>
</div><!-- testimonial_content / -->
</div><!-- col / -->
<div class="col-md-33">
<div class="testimonial_content">
<div class="testimonial_icon">
<span><i class="far fa-lightbulb"></i></span>
</div>
<h4>CREATIVE IDEAS</h4>
<div class="border_bar"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let. Lorem Ipsum has
been the industry.
</p>
</div><!-- testimonial_content / -->
</div><!-- col / -->
<div class="col-md-33">
<div class="testimonial_content">
<div class="testimonial_icon">
<span><i class="far fa-comment-alt"></i></span>
</div>
<h4>FREE SUPPORT</h4>
<div class="border_bar"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let. Lorem Ipsum has
been the industry.
</p>
</div><!-- testimonial_content / -->
</div><!-- col / -->
</div>
</div><!-- row / -->
</div><!-- container / -->
</section><!-- Testimonail End -->
<div class="testimonial_border_bottom"></div>
<!-- Our History Start -->
<section class="custom_width" id="history">
<div class="container">
<div class="row history_height">
<div class="col-md-6">
<div class="history_img">
<img src="images/history.png" alt="History Image">
</div>
</div>
<div class="col-md-6">
<div class="history_text">
<h2>OUR HISTORY</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ip sum has
been the industry's standard dummy text ever since the 1500s, when an unk- nown printer took
a galley of type and scrambled it to make
a type specimen book.</p>
<br />
<br />
<p>It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s with the release of
Letraset sheets containing Lorem Ipsum passages, and more
recently with desktop publishing software like Aldus PageMaker including versions of Lorem
Ipsum.
</p>
<a href="#recent_work_section" class="history_btn">BROWSE OUR WORK</a>
</div>
</div>
</div><!-- row / -->
</div><!-- container / -->
</section><!-- Our History End -->
<!-- Our Services Start -->
<section class="custom_width">
<div class="services">
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<div class="service_content">
<div class="service_content_tablecell">
<h2>OUR SeRVICES</h2>
<div class="service_text service_text_1">
<h4>WEB DESIGN</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ip sum has been the industry's standard dummy text ever.</p>
</div>
<div class="service_text service_text_2">
<h4>PRINT DESIGN</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ip sum has been the industry's standard dummy text ever.</p>
</div>
<div class="service_text service_text_3">
<h4>PHOTOGRAPHY</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ip sum has been the industry's standard dummy text ever.</p>
</div>
</div>
</div>
<div class="service_bar_1 service_bar"></div>
<div class="service_bar_2 service_bar"></div>
<div class="service_bar_3 service_bar"></div>
</div>
<div class="col-md-6">
<div class="service_bg">
<div class="service_icon_1 service_icon">
<a href="#"><img src="images/services/service_icon_1.png" alt="Service Icon"></a>
</div>
<div class="service_icon_2 service_icon">
<a href="#"><img src="images/services/service_icon_2.png" alt="Service Icon" /></a>
</div>
<div class="service_icon_3 service_icon">
<a href="#"><img src="images/services/service_icon_3.png" alt="Service Icon"></a>
</div>
</div>
</div>
</div><!-- row / -->
</div><!-- container-fluid / -->
</div><!-- service_bg / -->
</section><!-- Our Services End -->
<!-- Recent-Works Section Start -->
<section id="recent_work_section" class="height_140 custom_width">
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3">
<div class="recent_work_top">
<h2>RECENT WORKS</h2>
<p>
It has survived not only five centuries, but also the leap scrambled it to make a type.
</p>
<div class="header_bars recent_work_bar">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div class="recent_work_menu">
<button data-filter="*" class="recent_work_active">All</button>
<span>/</span>
<button data-filter=".print">PRINT DESIGN</button>
<span>/</span>
<button data-filter=".animation">ANIMATION</button>
<span>/</span>
<button data-filter=".art">ART</button>
<span>/</span>
<button data-filter=".web_design">WEB DESIGN</button>
<span>/</span>
<button data-filter=".photography">PHOTOGRAPHY</button>
<span>/</span>
<button data-filter=".video">VIDEO</button>
<span>/</span>
</div>
</div>
</div><!-- row / -->
</div><!-- container-fluid / -->
<div class="iso_recent_work">
<div class="recent_works">
<div class="recent_work_box animation video web_design">
<a href="#">
<div class="recent_work_sample recent_work_bg_1">
<img src="images/recent-works/recent_work_bg_1.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>Web DESIGN</h4>
<p>design / development</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box web_design">
<a href="#">
<div class="recent_work_sample recent_work_bg_2">
<img src="images/recent-works/recent_work_bg_2.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>Web DESIGN</h4>
<p>design / development</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box print art web_design">
<a href="#">
<div class="recent_work_sample recent_work_bg_3">
<img src="images/recent-works/recent_work_bg_3.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>Web DESIGN</h4>
<p>design / development</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box photography">
<a href="#">
<div class="recent_work_sample recent_work_bg_4">
<img src="images/recent-works/recent_work_bg_4.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>photography</h4>
<p>art / photography</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box animation art">
<a href="#">
<div class="recent_work_sample recent_work_bg_5">
<img src="images/recent-works/recent_work_bg_5.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>animation</h4>
<p>art / animation</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box photography">
<a href="#">
<div class="recent_work_sample recent_work_bg_6">
<img src="images/recent-works/recent_work_bg_6.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>photography</h4>
<p>art / photography</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box photography">
<a href="#">
<div class="recent_work_sample recent_work_bg_7">
<img src="images/recent-works/recent_work_bg_7.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>photography</h4>
<p>art / photography</P>
</div>
</a>
</div><!-- recent_work_box / -->
<div class="recent_work_box print art">
<a href="#">
<div class="recent_work_sample recent_work_bg_8">
<img src="images/recent-works/recent_work_bg_8.jpg" height="480" alt="Recent Work">
</div>
<div class="recent_workd_sample_text">
<h4>T-SHIRT DESIGN</h4>
<p>art / t-shirt</P>
</div>
</a>
</div><!-- recent_work_box / -->
</div><!-- recent_works / -->
</div><!-- iso_recent_work / -->
</section><!-- Recent-Works Section End -->
<!-- Case Study Section Start -->
<section class="height_150 custom_width">
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3">
<div class="recent_work_top">
<h2>CASE STUDY</h2>
<p>
A brief story about how this process works, keep an eye till the end.
</p>
<div class="header_bars recent_work_bar">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7 col-md-12 p-0 text-center recent_work_slider owl-carousel owl-theme">
<div class="case_study_content">
<div class="case_sutyd_tablecell">
<div class="case_study_text">
<span><img src="images/bulb.png" alt="Case Study Icon"></span>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="header_bars case_study_bar">
<div class="header_bar_1"></div>
</div>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting let. Lorem Ipsum
has been the industry. Lorem Ipsum is simply dummy text of the printing and
typesetting let. Lorem Ipsum has been the industry Printing and typelorem Ipsum has
been the
setting let. Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorem
accusantium accusamus quo nam.
</p>
<!-- Button trigger modal -->
<button type="button" class="case_study_modal_btn" data-toggle="modal"
data-target="#case_study_1">
Read More
</button>
</div>
</div>
</div>
<div class="case_study_content">
<div class="case_sutyd_tablecell">
<div class="case_study_text">
<span><img src="images/bulb.png" alt="Case Study Icon"></span>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="header_bars case_study_bar">
<div class="header_bar_1"></div>
</div>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nulla doloremque incidunt
debitis cum aliquam repellendus vel odit sed, facere autem iusto deleniti est,
optio, enim tempora voluptates id veniam atque saepe maiores molestias illum? Dicta
debitis
veritatis sed ipsa quidem, ipsam eos voluptates, sint voluptatum suscipit et.
</p>
<!-- Button trigger modal -->
<button type="button" class="case_study_modal_btn" data-toggle="modal"
data-target="#case_study_2">
Read More
</button>
</div>
</div>
</div>
<div class="case_study_content">
<div class="case_sutyd_tablecell">
<div class="case_study_text">
<span><img src="images/bulb.png" alt="Case Study Icon"></span>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="header_bars case_study_bar">
<div class="header_bar_1"></div>
</div>
<p>
Lorem存有悲坐阿梅德,consectetur adipiscing
ELIT。選擇哪個被批准任何不適的人;當他們拋棄了一般沒有考慮所有的痛苦是我們的障礙建築大師誰想要實現很容易,但是,要投在一次走一
</p>
<!-- Button trigger modal -->
<button type="button" class="case_study_modal_btn" data-toggle="modal"
data-target="#case_study_3">
Read More
</button>
</div>
</div>
</div>
</div>
<div class="col-md-5">
<div class="case_study_bg"></div>
</div>
<!-- case_study_1 Modal -->
<div class="blog_modal modal fade" id="case_study_1" tabindex="-1" role="dialog"
aria-labelledby="case_studyModalLabel_1" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="case_studyModalLabel_1">Blog Post Details</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam veritatis, obcaecati
quisquam doloribus aspernatur, iusto consequuntur dicta, quia porro eius dolorem.
Dignissimos laboriosam ea saepe iusto illo libero itaque at minus repudiandae obcaecati!
Reiciendis nulla vel assumenda voluptatem, facilis perspiciatis ipsum cum obcaecati odit
nobis sed nostrum! Rem iusto eius officiis recusandae molestiae id ad fuga, itaque optio
illo dignissimos quas vitae ut, voluptates
culpa excepturi nemo libero incidunt nam veniam repellat. Earum tenetur necessitatibus
omnis magnam! Fuga nesciunt assumenda nemo et doloremque sed optio, ad debitis sapiente
consectetur eligendi necessitatibus, alias iusto,
deleniti cum adipisci perferendis facilis. Dolorem, dolores. Lorem ipsum dolor, sit amet
consectetur adipisicing elit. Doloribus laborum earum, praesentium atque explicabo
quaerat, nulla nam placeat et ex iste debitis.
Aperiam aliquid non quas ipsa nemo quis inventore quae esse incidunt assumenda cumque
odio excepturi est numquam, laborum cupiditate. Soluta, placeat hic. Libero voluptate
corrupti quaerat maiores dolorum asperiores nihil,
similique, eligendi voluptates neque numquam molestiae odit. Deserunt ab facilis maxime
qui, assumenda nam repellat non accusamus corporis, quidem optio voluptas obcaecati
labore natus? Fugit laborum quibusdam vel veniam
quidem aperiam quae, eaque expedita ut. Quas autem, corrupti aspernatur repellat
reiciendis eligendi, suscipit delectus eius perferendis minus quam ipsum, amet commodi
voluptate. Fugiat harum, pariatur cumque natus amet
ut aspernatur in voluptates suscipit vitae commodi dignissimos quo veniam, reiciendis
eos, possimus nobis? Cumque exercitationem repellat numquam delectus? Excepturi officia
sunt explicabo quod quis recusandae minus. Quas
quae eum nulla blanditiis, suscipit facere dolorem corporis laudantium dicta atque.
Esse, optio? Ad id nobis non, nemo sint quibusdam. Deserunt autem in minus rem,
architecto ducimus necessitatibus dicta inventore sint
ex voluptatum quisquam, tenetur consequatur voluptatibus odio? Vero provident neque
vitae voluptatem est molestiae nulla reprehenderit. Rerum nesciunt eveniet saepe quos
exercitationem veritatis commodi. Minus vero molestiae
suscipit esse inventore similique?
</div>
</div>
</div>
</div><!-- blog_modal / -->
<!-- case_study_2 Modal -->
<div class="blog_modal modal fade" id="case_study_2" tabindex="-1" role="dialog"
aria-labelledby="case_studyModalLabel_2" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="case_studyModalLabel_2">Blog Post Details</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ut animi, recusandae ex esse
ducimus et reprehenderit sint accusamus voluptas expedita asperiores veniam labore nihil
illo repellat vel impedit iste. Architecto eos aperiam repudiandae corrupti.
Ipsa odio laudantium enim nam qui perspiciatis mollitia explicabo, iusto eius fugit
laboriosam repellat, necessitatibus rerum! Lorem ipsum dolor sit amet, consectetur
adipisicing elit. Molestiae eligendi modi quae ullam
deserunt nobis architecto quis consequatur facilis ut cumque neque omnis doloremque
impedit velit sint autem repellendus assumenda necessitatibus tenetur delectus, minus
nam commodi beatae. Similique soluta temporibus voluptatem
nesciunt dolorem cupiditate maxime harum iusto nam. Eaque, maxime commodi? Vero,
tempore. Magnam aperiam ea nemo, rem asperiores reprehenderit veritatis hic vero
inventore laudantium ex aspernatur voluptatum corporis exercitationem?
Numquam explicabo quis reiciendis facere. Voluptatibus, alias repellat laboriosam neque
reprehenderit tempore maxime. Magni vero cum nam unde officiis impedit exercitationem,
possimus ipsa sunt ducimus ab, nobis atque maxime
accusantium quia debitis hic! Necessitatibus dicta, ipsam tempora aut odio officiis
provident aliquam architecto saepe laborum voluptatibus dignissimos dolor quod tempore
cum autem, quos nihil at sint reprehenderit incidunt
perferendis blanditiis. Eos necessitatibus aut voluptatum placeat laboriosam quidem
alias sunt rem ipsum officia, eaque, ex neque nemo non exercitationem! Cum similique
alias quae distinctio sed veritatis voluptate, laborum
vitae officiis, voluptatem accusamus atque ipsam numquam. Vitae ratione corporis modi
architecto. Deserunt, optio ab. Vitae voluptate in id harum minima laborum repellendus
facilis maxime. Assumenda dolorum esse reprehenderit,
voluptatibus quam minima nemo cupiditate tempora praesentium. Accusantium dolore
assumenda commodi ipsa, in optio? Lorem ipsum dolor sit amet consectetur adipisicing
elit. Saepe, non porro sequi tempora vel perferendis
culpa eum doloremque quos minima necessitatibus voluptatum, in cupiditate est neque,
ratione ex repudiandae laboriosam labore cum. Officiis nostrum, soluta dolor nulla ipsum
suscipit eum laboriosam doloribus pariatur perferendis
hic iure impedit itaque, quis aperiam odio repellendus sit? Dolorum voluptatibus minima
commodi, mollitia maiores sapiente suscipit incidunt animi unde, amet et, voluptates non
tempore nulla ad debitis molestiae nesciunt
ipsam adipisci sit repudiandae asperiores. Quia, animi dolore ducimus aut nisi sequi
delectus nihil enim dicta eius aliquam harum nobis. Blanditiis autem obcaecati, minus
ipsam quis facilis porro eum delectus fugit? Vero
animi fugiat eos repellat, perferendis neque, maiores nam in aperiam quidem repudiandae
facilis, qui sed! Distinctio dolorem consequatur molestias doloribus, quidem voluptatem
itaque nesciunt nostrum. Temporibus excepturi,
architecto consequuntur doloremque quas aliquid laudantium maiores perferendis eos ipsa
facilis voluptates sequi dolorem minus quos voluptas vero tenetur. Illo voluptate neque
labore vel, aliquam consectetur, iusto qui
consequuntur expedita laboriosam inventore doloremque. Reiciendis quae distinctio
obcaecati vitae consequatur odio, quam velit rerum quo doloremque a, quisquam molestiae,
impedit dolorem laboriosam. Laboriosam expedita
error beatae cupiditate unde illo quos, vel, ea repellendus quam perferendis asperiores
in delectus.
</div>
</div>
</div>
</div><!-- blog_modal / -->
<!-- case_study_3 Modal -->
<div class="blog_modal modal fade" id="case_study_3" tabindex="-1" role="dialog"
aria-labelledby="case_studyModalLabel_3" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="case_studyModalLabel_3">Blog Post Details</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Lorem存有悲坐阿梅德,consectetur adipiscing
ELIT。選擇哪個被批准任何不適的人;當他們拋棄了一般沒有考慮所有的痛苦是我們的障礙建築大師誰想要實現很容易,但是,要投在一次走一個的需求勢必會選擇,更談不上對聖母的優勢。因為他們不知道義人的最釋放的這些時代通過類似的願望疼痛的快感。這些症狀,最有益?然而,在時間。有沒有人來開的巨大之一,他拒絕了身體的快樂的事情從嚴酷的譴責讚美真理的探險家的實踐中,這種人所行的?從來沒有解釋他拒絕他們。要快樂,而在其他時候,他可能會抵制強烈,也不挑剔的最有效的時間。這是一個很大的障礙,執行公務時,當換怎麼回事,我們或許可以,但他們是從主文件,對我們來說,最重要的是,這種指責,對於債務!的所謂的必需品,在非常無愧于時代勞動的痛苦的樂趣,仇恨的,在時他經常奔往自己的時間職責,然而,一些建築大師,他心裡是沒有過錯與下跌是在她的的奉承經久不衰。是令人厭煩的存在,確實是別人,或快感的記錄了,他可以請他們來的需求的辦公室,和結構都沒有從任何人,也不是演習!當,並在同樣的區別,但其他人,誰是真理的,愉悅的,辛苦的,和生活,愉悅的關係,她從來沒有指責。生活的方式的建築大師的身體的世俗性質。放棄期權。在大多數情況下,這些至少我的勞動中,被丟在愉悅的那麼容易的生活。要接受痛苦被人批評,沒有一個是時代的樂趣的渴望,對當前事件的非常小的一部分。一次指責疼痛利用這一優勢在解決這個選項?
</div>
</div>
</div>
</div><!-- blog_modal / -->
</div><!-- row / -->
</div> <!-- container / -->
</section><!-- Case Study Section End -->
<!-- Statistics Section Start -->
<section class="statistics_bg defualt_padding custom_width">
<div class="container">
<div class="statistics">
<div class="row text-center">
<div class="col-md-2">
<div class="statistics_content">
<span><i class="far fa-heart"></i></span>
<h3 class="statistics_countup">3891</h3>
<p>User Favourites</p>
</div>
</div>
<div class="col-md-2">
<div class="statistics_content">
<span><i class="far fa-user"></i></span>
<h3 class="statistics_countup">281000</h3>
<p> Posts Last 24 Hours</p>
</div>
</div>
<div class="col-md-2">
<div class="statistics_content">
<span><i class="far fa-thumbs-up"></i></span>
<h3 class="statistics_countup">618</h3>
<p> Total Posts</p>
</div>
</div>
<div class="col-md-2">
<div class="statistics_content">
<span><i class="far fa-star"></i></span>
<h3 class="statistics_countup">178</h3>
<p>Campaigns</p>
</div>
</div>
<div class="col-md-2">
<div class="statistics_content">
<span><i class="far fa-bookmark"></i></span>
<h3 class="statistics_countup">285</h3>
<p>Amazing Features</p>
</div>
</div>
</div><!-- row / -->
</div><!-- container / -->
</div> <!-- statistics_bg / -->
</section><!-- Statistics Section End -->
<!-- Our Pricing Section Start -->
<section class="defualt_padding custom_width">
<div class="container">
<div class="row text-center">
<div class="col-lg-6 offset-lg-3">
<div class="recent_work_top">
<h2>OUR PRICING</h2>
<p>
A 30 days free trial for all. A brief story about how this process works, keep an eye till
the end.
</p>
<div class="header_bars recent_work_bar">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
</div>
</div>
</div>
<div class="row text-center">
<div class=" pricing_card_slider owl-carousel owl-theme">
<div class="pricing_tablle text-center">
<div class="pricing_card">
<div class="pricing_card_header">
<h2>STARTER</h2>
<div class="price">
<div class="price_transparent_bg"></div>
<div class="price_bg">
<div class="price_bg_tablecell">
<h4>$19</h4>
<p>per month</p>
</div>
</div>
</div>
</div>
<div class="pricng_body">
<a href="#">Competition Analysis Methods</a>
<br />
<a href="#">All Ranked URLs</a>
<br />
<a href="#">International Support System</a>
<br />
<a href="#">Social Media Tracking</a>
<br />
<a href="#" class="pricing_btn case_study_btn">choose plan</a>
</div>
</div>
</div><!-- pricing_tablle / -->
<div class="pricing_tablle text-center">
<div class="pricing_card card_2">
<div class="pricing_card_header">
<h2>PREMIUM</h2>
<div class="price">
<div class="price_transparent_bg"></div>
<div class="price_bg">
<div class="price_bg_tablecell">
<h4>$39</h4>
<p>per month</p>
</div>
</div>
</div>
</div>
<div class="pricng_body">
<a href="#">Competition Analysis Methods</a>
<br />
<a href="#">All Ranked URLs</a>
<br />
<a href="#">International Support System</a>
<br />
<a href="#">Social Media Tracking</a>
<br />
<a href="#" class="pricing_btn case_study_btn">choose plan</a>
</div>
</div>
</div><!-- pricing_tablle / -->
<div class="pricing_tablle text-center">
<div class="pricing_card">
<div class="pricing_card_header">
<h2>BUSINESS</h2>
<div class="price">
<div class="price_transparent_bg"></div>
<div class="price_bg">
<div class="price_bg_tablecell">
<h4>$99</h4>
<p>per month</p>
</div>
</div>
</div>
</div>
<div class="pricng_body">
<a href="#">Competition Analysis Methods</a>
<br />
<a href="#">All Ranked URLs</a>
<br />
<a href="#">International Support System</a>
<br />
<a href="#">Social Media Tracking</a>
<br />
<a href="#" class="pricing_btn case_study_btn">choose plan</a>
</div>
</div>
</div><!-- pricing_tablle / -->
</div>
</div><!-- row / -->
</div><!-- container / -->
</section><!-- Our Pricing Section End-->
<!-- Our Team Section Start -->
<section class="custom_width defualt_padding our_team_bg">
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3 text-center">
<div class="recent_work_top our_team_top">
<h2>OUR TEAM</h2>
<p>
Meet the craziest team. Share your thoughts with them.
</p>
<div class="header_bars recent_work_bar">
<div class="header_bar_1"></div>
<div class="header_bar_2"></div>
<div class="header_bar_3"></div>
</div>
</div>
</div>
</div><!-- row / -->
</div><!-- container / -->
<div class="our_team_transparent_bg"></div>