-
Notifications
You must be signed in to change notification settings - Fork 441
/
Copy pathindex.html
1091 lines (956 loc) · 63.3 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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bino html5 free Template</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!--Google Fonts link-->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="assets/css/iconfont.css">
<link rel="stylesheet" href="assets/css/slick/slick.css">
<link rel="stylesheet" href="assets/css/slick/slick-theme.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/jquery.fancybox.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!-- <link rel="stylesheet" href="assets/css/bootstrap-theme.min.css">-->
<!--For Plugins external css-->
<link rel="stylesheet" href="assets/css/plugins.css" />
<!--Theme custom css -->
<link rel="stylesheet" href="assets/css/style.css">
<!--Theme Responsive css-->
<link rel="stylesheet" href="assets/css/responsive.css" />
<script src="assets/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body data-spy="scroll" data-target=".navbar-collapse">
<div class='preloader'><div class='loaded'> </div></div>
<div class="culmn">
<header id="main_menu" class="header navbar-fixed-top">
<div class="main_menu_bg">
<div class="container">
<div class="row">
<div class="nave_menu">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home">
<img src="assets/images/logo.png"/>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">HOME</a></li>
<li><a href="#history">ABOUT US</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
<li><a href="#pricing">PRICING</a></li>
<li><a href="#team">TEAM</a></li>
<li><a href="#blog">BLOG</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
</header> <!--End of header -->
<!--home Section -->
<section id="home" class="home">
<div class="overlay">
<div class="home_skew_border">
<div class="container">
<div class="row">
<div class="col-sm-12 ">
<div class="main_home_slider text-center">
<div class="single_home_slider">
<div class="main_home wow fadeInUp" data-wow-duration="700ms">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="separator"></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="home_btn">
<a href="https://bootstrapthemes.co" class="btn btn-lg m_t_10">GET STARTED NOW</a>
<a href="https://bootstrapthemes.co" class="btn btn-default">LEARN MORE</a>
</div>
</div>
</div>
<div class="single_home_slider">
<div class="main_home wow fadeInUp" data-wow-duration="700ms">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="separator"></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="home_btn">
<a href="https://bootstrapthemes.co" class="btn btn-lg m_t_10">GET STARTED NOW</a>
<a href="https://bootstrapthemes.co" class="btn btn-default">LEARN MORE</a>
</div>
</div>
</div>
<div class="single_home_slider">
<div class="main_home wow fadeInUp" data-wow-duration="700ms">
<h3>Our Clients Are Our First Priority</h3>
<h1>WELCOME TO BINO</h1>
<div class="separator"></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="home_btn">
<a href="https://bootstrapthemes.co" class="btn btn-lg m_t_10">GET STARTED NOW</a>
<a href="https://bootstrapthemes.co" class="btn btn-default">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="scrooldown">
<a href="#feature"><i class="fa fa-arrow-down"></i></a>
</div>
</div>
</div>
</section><!--End of home section -->
<!--feature section -->
<section id="feature" class="feature sections">
<div class="container">
<div class="row">
<div class="main_feature text-center">
<div class="col-sm-3">
<div class="single_feature">
<div class="single_feature_icon">
<i class="fa fa-clone"></i>
</div>
<h4>SLEEK DESIGN</h4>
<div class="separator3"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let.
Lorem Ipsum has been the industry.</p>
</div>
</div>
<div class="col-sm-3">
<div class="single_feature">
<div class="single_feature_icon">
<i class="fa fa-heart-o"></i>
</div>
<h4>CLEAN CODE</h4>
<div class="separator3"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let.
Lorem Ipsum has been the industry.</p>
</div>
</div>
<div class="col-sm-3">
<div class="single_feature">
<div class="single_feature_icon">
<i class="fa fa-lightbulb-o"></i>
</div>
<h4>CREATIVE IDEAS</h4>
<div class="separator3"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let.
Lorem Ipsum has been the industry.</p>
</div>
</div>
<div class="col-sm-3">
<div class="single_feature">
<div class="single_feature_icon">
<i class="fa fa-comments-o"></i>
</div>
<h4>FREE SUPPORT</h4>
<div class="separator3"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting let.
Lorem Ipsum has been the industry.</p>
</div>
</div>
</div>
</div>
</div><!--End of container -->
</section><!--End of feature Section -->
<hr />
<!-- History section -->
<section id="history" class="history sections">
<div class="container">
<div class="row">
<div class="main_history">
<div class="col-sm-6">
<div class="single_history_img">
<img src="assets/images/stab1.png" alt="" />
</div>
</div>
<div class="col-sm-6">
<div class="single_history_content">
<div class="head_title">
<h2>OUR HISTORY</h2>
</div>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here, content here', making it
look like readable English. Many desktop publishing packages and web page editors now use
Lorem Ipsum as their default model text, and a search for 'lorem ipsum' </p>
<a href="" class="btn btn-lg">BROWSE OUR WORK</a>
</div>
</div>
</div>
</div><!--End of row -->
</div><!--End of container -->
</section><!--End of history -->
<!-- service Section -->
<section id="service" class="service">
<div class="container-fluid">
<div class="row">
<div class="main_service">
<div class="col-md-6 col-sm-12 no-padding">
<div class="single_service single_service_text text-right">
<div class="head_title">
<h2>OUR SERVICES</h2>
</div>
<div class="row">
<div class="col-md-12 col-sm-10 col-xs-10 margin-bottom-60">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 col-xs-9 col-xs-offset-1">
<article class="single_service_right_text">
<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>
</article>
</div>
<div class="col-sm-1 col-xs-1">
<figure class="single_service_icon">
<i class="fa fa-heart"></i>
</figure><!-- End of figure -->
</div>
</div>
</div><!-- End of col-sm-12 -->
<div class="col-md-12 col-sm-10 col-xs-10 margin-bottom-60">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 col-xs-9 col-xs-offset-1">
<article class="single_service_right_text">
<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>
</article>
</div>
<div class="col-sm-1 col-xs-1">
<figure class="single_service_icon">
<i class="fa fa-heart"></i>
</figure><!-- End of figure -->
</div>
</div>
</div><!-- End of col-sm-12 -->
<div class="col-md-12 col-sm-10 col-xs-10 margin-bottom-60">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 col-xs-9 col-xs-offset-1 margin-bottom-20">
<article class="single_service_right_text">
<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>
</article>
</div>
<div class="col-sm-1 col-xs-1">
<figure class="single_service_icon">
<i class="fa fa-heart"></i>
</figure><!-- End of figure -->
</div>
</div>
</div><!-- End of col-sm-12 -->
</div>
</div>
</div><!-- End of col-sm-6 -->
<div class="col-md-6 col-sm-12 no-padding">
<figure class="single_service single_service_img">
<div class="overlay-img"></div>
<img src="assets/images/servicerightimg.jpg" alt="" />
</figure><!-- End of figure -->
</div><!-- End of col-sm-6 -->
</div>
</div><!-- End of row -->
</div><!-- End of Container-fluid -->
</section><!-- End of service Section -->
<section id="portfolio" class="portfolio sections">
<div class="container-fluid">
<div class="row">
<div class="main_portfolio">
<div class="col-sm-12">
<div class="head_title text-center">
<h2>RECENT WORKS</h2>
<div class="subtitle">
It has survived not only five centuries, but also the leap scrambled it to make a type.
</div>
<div class="separator"></div>
</div>
</div>
<div class="work_menu text-center">
<div id="filters" class="toolbar mb2 mt2">
<button class="btn-md fil-cat filter active" data-filter="all">ALL</button>/
<button class="btn-md fil-cat filter" data-rel="web" data-filter=".web">WEB DESIGN</button>/
<button class="btn-md fil-cat filter" data-rel="design" data-filter=".design">PRINT DESIGN</button>/
<button class="btn-md fil-cat filter" data-rel="flyers" data-filter=".flyers">ANIMATION</button>/
<button class="btn-md fil-cat filter" data-rel="bcards" data-filter=".bcards">ART</button>/
<button class="btn-md fil-cat filter" data-rel="photo" data-filter=".photo">PHOTOGRAPHY</button>/
<button class="btn-md fil-cat filter" data-rel="video" data-filter=".video">VIDEO</button>
</div>
</div>
<div style="clear:both;"></div>
<div id="portfoliowork">
<div class="single_portfolio tile scale-anm web grid-item-width2 video" >
<img src="assets/images/pf1.jpg" alt="" />
<a href="assets/images/pf1.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm bcards photo" >
<img src="assets/images/pf2.jpg" alt="" />
<a href="assets/images/pf2.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm web video">
<img src="assets/images/pf3.jpg" alt="" />
<a href="assets/images/pf3.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm web photo" >
<img src="assets/images/pf4.jpg" alt="" />
<a href="assets/images/pf4.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm bcards design" >
<img src="assets/images/pf5.jpg" alt="" />
<a href="assets/images/pf5.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm flyers video design">
<img src="assets/images/pf6.jpg" alt="" />
<a href="assets/images/pf6.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm photo flyers">
<img src="assets/images/pf7.jpg" alt="" />
<a href="assets/images/pf7.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
<div class="single_portfolio tile scale-anm bcards video" >
<img src="assets/images/pf8.jpg" alt="" />
<a href="assets/images/pf8.jpg" class="portfolio-img">
<div class="grid_item_overlay">
<div class="separator4"></div>
<h3>T-SHIRT DESIGN</h3>
<p>art / t-shirt</p>
</div>
</a>
</div>
</div>
<div style="clear:both;"></div>
</div>
</div>
</div><!-- End off container -->
</section> <!-- End off Work Section -->
<!-- Study Section -->
<section id="study" class="study text-center wow fadeIn" data-wow-duration="2s" data-wow-dealy="1.5s">
<div class="container">
<div class="row">
<div class="main_study_area sections">
<div class="head_title text-center">
<h2>CASE STUDY</h2>
<div class="subtitle">
A brief story about how this process works, keep an eye till the end.
</div>
<div class="separator"></div>
</div>
<div class="single_study_content">
<div class="col-sm-6">
<div class="single_study_slid_area">
<div class="single_study_text">
<div class="study_slider">
<div class="item">
<div class="s_study_icon">
<i class="fa fa-lightbulb-o"></i>
</div>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="separator3"></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.</p>
<a href="" class="btn btn-lg">read more</a>
</div>
<div class="item">
<div class="s_study_icon">
<i class="fa fa-lightbulb-o"></i>
</div>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="separator3"></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.</p>
<a href="" class="btn btn-lg">read more</a>
</div>
<div class="item">
<div class="s_study_icon">
<i class="fa fa-lightbulb-o"></i>
</div>
<h4>aCCUMULATE CREATIVE IDEAS</h4>
<div class="separator3"></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.</p>
<a href="" class="btn btn-lg">read more</a>
</div>
</div>
</div>
</div>
</div>
<div class="single_study_right_img">
<div class="col-sm-6">
<div class="single_study_img">
<img src="assets/images/study.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
</div><!-- End off row -->
</div><!-- End off Container -->
</section><!-- End off Study Section -->
<!-- Counter Section -->
<section id="counter" class="counter">
<div class="video_overlay">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="main_counter_area text-center">
<div class="row">
<div class="single_counter border_right">
<div class="col-sm-3 col-xs-12">
<div class="single_counter_item">
<i class="icon icon-thumbs-up"></i>
<h2 class="statistic-counter">3891</h2>
<h4 class="">User Favourites</h4>
</div>
</div>
</div>
<div class="single_counter">
<div class="col-sm-3 col-xs-12">
<div class="single_counter_item">
<i class="icon icon-business-3"></i>
<h2 class="statistic-counter">281</h2>
<h4 class="">Posts Last 24 Hours</h4>
</div>
</div>
</div>
<div class="single_counter">
<div class="col-sm-3 col-xs-12">
<div class="single_counter_item">
<i class="icon icon-people-32"></i>
<h2 class="statistic-counter">618</h2>
<h4 class="">Total Posts</h4>
</div>
</div>
</div>
<div class="single_counter">
<div class="col-sm-3 col-xs-12">
<div class="single_counter_item">
<i class="icon icon-cup"></i>
<h2 class="statistic-counter">178</h2>
<h4 class="">Amazing Features</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- End off container -->
</section> <!-- End of counter section -->
<!-- Pricing Section -->
<section id="pricing" class="pricing">
<div class="container">
<div class="row">
<div class="main_pricing_area sections">
<div class="head_title text-center">
<h2>OUR PRICING</h2>
<div class="subtitle">
A 30 days free trial for all. A brief story about how this process works, keep an eye till the end.
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="col-md-4 col-sm-6">
<div class="single_pricing">
<div class="pricing_head">
<h3>STARTER</h3>
<div class="pricing_price">
<div class="p_r text-center">$19</div>
<div class="m_t text-center">per month</div>
</div>
</div>
<div class="pricing_body">
<ul>
<li>Competition Analysis Methods</li>
<li>All Ranked URLs</li>
<li>International Support System</li>
<li>Social Media Tracking</li>
</ul>
<a href="https://bootstrapthemes.co" class="btn btn-md">CHOOSE PLAN</a>
</div>
</div>
</div> <!-- End off col-md-4 -->
<div class="col-md-4 col-sm-6">
<div class="single_pricing pricing_business">
<div class="pricing_head ">
<h3>PREMIUM</h3>
<div class="pricing_price">
<div class="p_r text-center">$39</div>
<div class="m_t text-center">per month</div>
</div>
</div>
<div class="pricing_body">
<ul>
<li>Competition Analysis Methods</li>
<li>All Ranked URLs</li>
<li>International Support System</li>
<li>Social Media Tracking</li>
</ul>
<a href="https://bootstrapthemes.co" class="btn btn-md">CHOOSE PLAN</a>
</div>
</div>
</div> <!-- End off col-md-4 -->
<div class="col-md-4 col-sm-6">
<div class="single_pricing">
<div class="pricing_head">
<h3>BUSINESS</h3>
<div class="pricing_price">
<div class="p_r text-center">$99</div>
<div class="m_t text-center">per month</div>
</div>
</div>
<div class="pricing_body">
<ul>
<li>Competition Analysis Methods</li>
<li>All Ranked URLs</li>
<li>International Support System</li>
<li>Social Media Tracking</li>
</ul>
<a href="https://bootstrapthemes.co" class="btn btn-md">CHOOSE PLAN</a>
</div>
</div>
</div> <!-- End off col-md-4 -->
</div>
</div><!-- End off row -->
</div><!-- End off container -->
</section><!-- End off Pricing Section -->
<!-- Team Section -->
<section id="team" class="team">
<div class="main_team_area">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="head_title textwhite text-center margin-top-80">
<h2>OUR TEAM</h2>
<div class="subtitle">
Meet the craziest team. Share your thoughts with them.
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="main_team">
<ul>
<li>
<div class="single_team_img">
<img src="assets/images/team1.jpg" alt="" />
</div>
<div class="single_team_text">
<h4>Semf Ucuk</h4>
<p>Founder</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="assets/images/team2.jpg" alt="" />
</div>
<div class="single_team_text">
<h4>Kazi Erfan</h4>
<p>Engineering</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="assets/images/team3.jpg" alt="" />
</div>
<div class="single_team_text">
<h4>Jeng Koli</h4>
<p>Designer</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="assets/images/team4.jpg" alt="" />
</div>
<div class="single_team_text">
<h4>Pet Romak</h4>
<p>Marketing</p>
</div>
</li>
<li>
<div class="single_team_img">
<img src="assets/images/test2.jpg" alt="" />
</div>
<div class="single_team_text">
<h4>Chet Pok</h4>
<p>Web Developer</p>
</div>
</li>
</ul>
</div>
</div><!-- End of main team contant -->
</div>
</div><!-- End of container -->
</div>
</section><!-- End off Team Section -->
<!-- Client Logo Section -->
<section id="clogo" class="clogo">
<div class="container">
<div class="row">
<div class="main_clogo sections text-center">
<div class="head_title text-center">
<h2>Great Integrations with Others</h2>
<div class="subtitle">
Suspendisse sed eros mollis, tincidunt felis eget, interdum erat.
Nullam sit amet odio eu est aliquet euismod a a urna. Proin eu urna suscipit, dictum quam nec.
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo1.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo2.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo3.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo4.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo5.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo6.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo9.png" alt="" /></a>
</div>
<div class="col-sm-3 col-xs-6">
<a href=""><img src="assets/images/clogo8.png" alt="" /></a>
</div>
</div>
</div>
</div>
<div class="divider"></div>
</section><!-- End off clogo Section -->
<!-- Blog Section -->
<section id="blog" class="blog">
<div class="container-fluid">
<div class="row">
<div class="main_blog sections">
<div class="head_title text-center">
<h2>OUR BLOG</h2>
<div class="subtitle">
Suspendisse sed eros mollis, tincidunt felis eget, interdum eratullam sit amet odio.
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="main_blog_content">
<div class="col-sm-6">
<div class="single_blog_area textwhite">
<div class="row">
<div class="col-sm-6 no-padding">
<div class="single_blog_img">
<img src="assets/images/blog1.jpg" alt="" />
</div>
</div>
<div class="col-sm-6 no-padding">
<div class="single_blog_text s_b_left">
<p>art/t-shirt</p>
<h3>T-SHIRT DESIGN</h3>
<div class="separator2"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the indu Stry's
standard dummy text ever since the 1500s, an unknown printer took a galley of type
a scrambled it to make a type specimen book.</p>
<a href="" class="read_more">Read More >></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="single_blog_area textwhite">
<div class="row">
<div class="col-sm-6 no-padding">
<div class="single_blog_img">
<img src="assets/images/blog2.jpg" alt="" />
</div>
</div>
<div class="col-sm-6 no-padding">
<div class="single_blog_text s_b_left">
<p>art/t-shirt</p>
<h3>T-SHIRT DESIGN</h3>
<div class="separator2"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the indu Stry's
standard dummy text ever since the 1500s, an unknown printer took a galley of type
a scrambled it to make a type specimen book.</p>
<a href="" class="read_more">Read More >></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="single_blog_area textwhite">
<div class="row">
<div class="col-sm-6 col-sm-push-6 no-padding">
<div class="single_blog_img">
<img src="assets/images/blog3.jpg" alt="" />
</div>
</div>
<div class="col-sm-6 col-sm-pull-6 no-padding">
<div class="single_blog_text s_b_right">
<p>art/t-shirt</p>
<h3>T-SHIRT DESIGN</h3>
<div class="separator2"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the indu Stry's
standard dummy text ever since the 1500s, an unknown printer took a galley of type
a scrambled it to make a type specimen book.</p>
<a href="" class="read_more">Read More >></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="single_blog_area textwhite">
<div class="row">
<div class="col-sm-6 col-sm-push-6 no-padding">
<div class="single_blog_img">
<img src="assets/images/blog4.jpg" alt="" />
</div>
</div>
<div class="col-sm-6 col-sm-pull-6 no-padding">
<div class="single_blog_text s_b_right">
<p>art/t-shirt</p>
<h3>T-SHIRT DESIGN</h3>
<div class="separator2"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the indu Stry's
standard dummy text ever since the 1500s, an unknown printer took a galley of type
a scrambled it to make a type specimen book.</p>
<a href="" class="read_more">Read More >></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- End off container -->
</section><!-- End off Blog Section -->
<section id="contact" class="contact">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="contact_contant sections">
<div class="head_title text-center">
<h2>kEEP IN TOUCH</h2>
<div class="subtitle">
Nullam sit amet odio eu est aliquet euismod a a urna. Proin eu urna suscipit, dictum quam nec.
</div>
<div class="separator"></div>
</div><!-- End off Head_title -->
<div class="row">
<div class="col-sm-6">
<div class="main_contact_info">
<div class="row">
<div class="contact_info_content padding-top-90 padding-bottom-60 p_l_r">
<div class="col-sm-12">
<div class="single_contact_info">
<div class="single_info_text">
<h3>OUR ADDRESS</h3>
<h4>House #13, Streat road, Sydney
2310 Australia</h4>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="single_contact_info">
<div class="single_info_text">
<h3>CALL US</h3>
<h4>+ 880 168 109 1425</h4>
<h4>+ 0216809142</h4>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="single_contact_info">
<div class="single_info_text">
<h3>EMAIL US</h3>
<h4>[email protected]</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="single_contant_left padding-top-90 padding-bottom-90">
<form action="#" id="formid">
<div class="col-lg-8 col-md-8 col-sm-10 col-lg-offset-2 col-md-offset-2 col-sm-offset-1">
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="First Name" required="">
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Email" required="">
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
<input type="text" class="form-control" name="subject" placeholder="Subject" required="">
</div>
</div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="7" placeholder="Message"></textarea>
</div>
<div class="">
<input type="submit" value="SEND MESSAGE" class="btn btn-lg">
</div>
</div>
</form>
</div>
</div>
</div>
</div>