-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.html
2087 lines (2041 loc) · 106 KB
/
test.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" />
<link rel="icon" type="image/png" href="assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>災害ドローン救援隊 DRONEBIRD</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<link href="assets/css/bootstrap.css" rel="stylesheet" />
<link href="assets/css/rubick.css" rel="stylesheet"/>
<!-- Fonts and icons -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,700' rel='stylesheet' type='text/css'>
<link href="assets/css/fonts/pe-icon-7-stroke.css" rel="stylesheet">
<link href="assets/css/fonts/Rubik-Fonts.css" rel="stylesheet" />
</head>
<body class="landing-page">
<nav class="navbar navbar-default navbar-transparent navbar-fixed-top navbar-burger" role="navigation">
<!-- if you want to keep the navbar hidden you can add this class to the navbar "navbar-burger"-->
<div class="container">
<div class="navbar-header">
<button id="menu-toggle" type="button" class="navbar-toggle" data-toggle="collapse" data-target="#example">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar bar1"></span>
<span class="icon-bar bar2"></span>
<span class="icon-bar bar3"></span>
</button>
<a href="index.html" class="navbar-brand">
DRONEBIRD
</a>
</div>
<div class="collapse navbar-collapse" >
<ul class="nav navbar-nav navbar-right navbar-uppercase">
<li class="social-links">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
<a href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#whoWeAre1">
About
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#workflow1">
Workflow
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#projects1">
Clothes
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#clients1">
Sponsors
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#team1">
Team
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#numbers1">
Numbers
</a>
</li>
<li>
<a href="" data-scroll="true" data-id="#contact1">
Contact
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
<div class="wrapper">
<div class="section section-header">
<div class="parallax pattern-image">
<img src="assets/img/rubik_background.jpg"/>
<div class="container">
<div class="content">
<h1>It's time to Fly with your Drone!!</h1>
<p>by CrisisMappers JAPAN<p>
</div>
</div>
</div>
</div>
<!-- SECTION WHO WE ARE -->
<div class="section section-we-are-1" id="whoWeAre1">
<div class="text-area">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray"> 1 Column Text & Images</h5>
<h2>Who we are section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>Creative tim is a tight-knit team of designers, developers, writers, and strategists. For over a decade, we've helped businesses to craft honest, emotional experiences through strategy, brand development, graphic design, web design, and storytelling.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-2">
<div class="card add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg" />
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
</div>
</div>
</div>
<div class="section section-we-are-2">
<div class="text-area">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="title add-animation-stopped">
<h5 class="text-gray">2 Columns Text</h5>
<h2>Who we are section.</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="col-md-7 col-md-offset-1">
<div class="description add-animation-stopped animation-1">
<p>We're The Company, a small design agency based in Chicago. We’ve been crafting beautiful websites, launching stunning brands and making clients happy for years.</p>
<p>With our prestigious craftsmanship, remarkable client care and passion for design, you could say we’re the ‘all singing, all dancing’ kind…</p>
<p>We think you’ll love working with us.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<div class="card add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg" />
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section section-we-are-1">
<div class="text-area">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray"> 1 Column Text & Parallax</h5>
<h2>Who we are section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p class="large">Creative tim is a tight-knit team of designers, developers, writers, and strategists. For over a decade, we've helped businesses to craft honest, emotional experiences through strategy, brand development, graphic design, web design, and storytelling.</p>
</div>
</div>
</div>
</div>
<div class="parallax full-image pattern-image">
<img alt="..." class="parallax-img" src="assets/img/builder/projects/project.jpg">
</div>
</div>
<div class="section section-we-are-2">
<div class="text-area">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="title add-animation-stopped">
<h5 class="text-gray">2 Columns Text & Parallax</h5>
<h2>Who we are section.</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="col-md-7 col-md-offset-1">
<div class="description add-animation-stopped animation-1">
<p>We're The Company, a small design agency based in Chicago. We’ve been crafting beautiful websites, launching stunning brands and making clients happy for years.</p>
<p>With our prestigious craftsmanship, remarkable client care and passion for design, you could say we’re the ‘all singing, all dancing’ kind…</p>
<p>We think you’ll love working with us.</p>
</div>
</div>
</div>
</div>
</div>
<div class="parallax full-image pattern-image">
<img alt="..." class="parallax-img" src="assets/img/builder/projects/project.jpg">
</div>
</div>
<div class="section section-we-are-1">
<div class="text-area">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray"> 1 Column Text & Carousel</h5>
<h2>Who we are section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p class="large">Creative tim is a tight-knit team of designers, developers, writers, and strategists. For over a decade, we've helped businesses to craft honest, emotional experiences through strategy, brand development, graphic design, web design, and storytelling.</p>
</div>
</div>
</div>
</div>
<div id="carousel">
<div id="section-we-are-1" class="carousel slide add-animation-stopped add-animation-stopped-1" data-interval="20000">
<!-- Wrapper for slides -->
<div class="carousel-inner pattern-image animate">
<div class="item active">
<img alt="..." class="full-image" src="assets/img/builder/projects/project.jpg" />
</div>
<div class="item">
<img alt="..." class="full-image" src="assets/img/builder/projects/project.jpg" />
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#section-we-are-1" data-slide="prev"><span class="fa fa-angle-left hidden-md hidden-lg"></span></a>
<a class="right carousel-control" href="#section-we-are-1" data-slide="next"><span class="fa fa-angle-right hidden-ms hidden-lg"></span></a>
</div>
</div>
</div>
<div class="section section-we-are-2">
<div class="text-area">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="title add-animation-stopped">
<h5 class="text-gray">2 Columns Text & Carousel</h5>
<h2>Who we are section.</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="col-md-7 col-md-offset-1">
<div class="description add-animation-stopped animation-1">
<p>We're The Company, a small design agency based in Chicago. We’ve been crafting beautiful websites, launching stunning brands and making clients happy for years.</p>
<p>With our prestigious craftsmanship, remarkable client care and passion for design, you could say we’re the ‘all singing, all dancing’ kind…</p>
<p>We think you’ll love working with us.</p>
</div>
</div>
</div>
</div>
</div>
<div id="carousel">
<div id="section-we-are-2" class="carousel slide add-animation-stopped add-animation-stopped-1" data-interval="20000">
<!-- Wrapper for slides -->
<div class="carousel-inner pattern-image animate">
<div class="item active">
<img alt="..." class="full-image" src="assets/img/builder/projects/project.jpg" />
</div>
<div class="item">
<img alt="..." class="full-image" src="assets/img/builder/projects/project.jpg" />
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#section-we-are-2" data-slide="prev"><span class="fa fa-angle-left hidden-md hidden-lg"></span></a>
<a class="right carousel-control" href="#section-we-are-2" data-slide="next"><span class="fa fa-angle-right hidden-ms hidden-lg"></span></a>
</div>
</div>
</div>
<!-- END SECTION WHO WE ARE -->
<!-- SECTIONS WHAT WE DO -->
<!-- Section "What We do" example 1: Small Title & 3 columns Text -->
<div class="section section-we-do-1" id="workflow1">
<div class="text-area">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray">Small Title & 3 columns Text</h5>
<h2>What we do section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<div class="card add-animation-stopped animation-1">
<h5 class="text-gray">01.</h5>
<h3>Web Development</h3>
<p>We're a digital agency with our roots in graphic design. We love to create awesome products and we also design for print.</p>
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-2">
<h5 class="text-gray">02.</h5>
<h3>Interactive Design</h3>
<p>We love making the web a better place and we love good reasons for adding to it. So join us and we will make history.</p>
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-3">
<h5 class="text-gray">03.</h5>
<h3>Marketing Strategies</h3>
<p>We love making the web a better place and we love good reasons for adding to it. So join us and we will make history.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "What We do" example 1: Small Title & 3 columns Text -->
<!-- Section "What We do" example 2: Big Title & 4 columns text -->
<div class="section section-we-do-1" id="workflow1">
<div class="text-area">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray">Big Title & 4 columns text</h5>
<h2>What we do section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>For those with pure food indulgence in mind, come next door and sate your desires with our ever changing internationally and seasonally inspired small plates. We love food, lots of different food, just like you.</p>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="card add-animation-stopped animation-1">
<h5 class="text-gray">01.</h5>
<h3>We Design</h3>
<p>We're a digital agency with our roots in graphic design. We love to create awesome products and we also design for print.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-2">
<h5 class="text-gray">02.</h5>
<h3>Business Analysis</h3>
<p>We love making the web a better place and we love good reasons for adding to it. So join us and we will make history.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-3">
<h5 class="text-gray">03.</h5>
<h3>Marketing Strategy</h3>
<p>We love to create awesome products and we do everything to make them outstanding. The brand is the item that make the difference.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation4">
<h5 class="text-gray">04.</h5>
<h3>Promotions</h3>
<p>We're a digital agency with our roots in graphic design. We love to create awesome products and we also design for print.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "What We do" example 2: Big Title & 4 columns text -->
<!-- Section "What We do" example 3: Small Title & 3 columns icons -->
<div class="section section-we-do-2" id="workflow2">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray">Small Title & 3 Columns Icons</h5>
<h2>What we do section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<div class="card add-animation-stopped animation-1">
<div class="icon">
<i class="pe-7s-paint"></i>
</div>
<h3>Design</h3>
<p>We're a digital agency with our roots in graphic design.</p>
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-2">
<div class="icon">
<i class="pe-7s-scissors"></i>
</div>
<h3>Adjustments</h3>
<p>We love making the web a better place and we love good reasons for adding to it.</p>
</div>
</div>
<div class="col-md-4">
<div class="card add-animation-stopped animation-3">
<div class="icon">
<i class="pe-7s-plugin"></i>
</div>
<h3>Branding</h3>
<p>We love to create awesome products and we do everything to make them outstanding.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "What We do" example 3: Small Title & 3 columns icons -->
<!-- Section "What We do" example 4: Big Title & 4 columns icons -->
<div class="section section-we-do-2" id="workflow2">
<div class="container">
<div class="row">
<div class="title add-animation-stopped">
<h5 class="text-gray">Big Title & 4 Columns Icons</h5>
<h2>What we do section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>For those with pure food indulgence in mind, come next door and sate your desires with our ever changing internationally and seasonally inspired small plates.</p>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-1">
<div class="icon">
<i class="pe-7s-piggy"></i>
</div>
<h3>Marketing</h3>
<p>We love making the web a better place and we love good reasons for adding to it.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-2">
<div class="icon">
<i class="pe-7s-headphones"></i>
</div>
<h3>Customer Support</h3>
<p>We're a digital agency with our roots in graphic design.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-3">
<div class="icon">
<i class="pe-7s-pen"></i>
</div>
<h3>Story writing</h3>
<p>We love making the web a better place and we love good reasons for adding to it.</p>
</div>
</div>
<div class="col-md-3">
<div class="card add-animation-stopped animation-4">
<div class="icon">
<i class="pe-7s-plugin"></i>
</div>
<h3>Branding</h3>
<p>We love to create awesome products and we do everything to make them outstanding.</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "What We do" example 3: Small Title & 3 columns icons -->
<!-- END SECTIONS WHAT WE DO -->
<!-- SECTION WHAT WE MADE -->
<!-- Section "Our Projects" example 1: 2 Columns Full Width -->
<div class="section section-we-made-1 section-with-hover" id="projects1">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">2 Columns Full width</h5>
<h2>Our Projects</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>In this area you can write some interesting description about the projects that your team created. Don't forget to add some awesome images under this description, like the beautiful ones that we added.</p>
</div>
</div>
<div class="row" id="projectsLine1">
<div class="col-md-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_1">
<div class="content">
<h4>Example No.1</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="#" target="_blank">
<div class="content">
<h4>Example No.4</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 1: 2 Columns Full Width -->
<!-- Section "Our Projects" example 2: 3 Columns Full Width -->
<div class="section section-we-made-1 section-with-hover" id="projects1">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">3 Columns Full Width & Color Hover</h5>
<h2>Our Projects</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>In this area you can write some interesting description about the projects that your team created. Don't forget to add some awesome images under this description, like the beautiful ones that we added.</p>
</div>
</div>
<div class="row" id="projectsLine1">
<div class="col-md-4">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-2" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_1">
<div class="content">
<h4>Example No.1</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-4 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-4" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-2" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-3" href="#" target="_blank">
<div class="content">
<h4>Example No.4</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 2: 3 Columns Full Width -->
<!-- Section "Our Projects" example 3: 2 Columns Boxed -->
<div class="section section-we-made-3 section-with-hover" id="projects1">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">2 Columns Boxed</h5>
<h2>Our Projects</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>In this area you can write some interesting description about the projects that your team created. Don't forget to add some awesome images under this description, like the beautiful ones that we added.</p>
</div>
</div>
<div class="container">
<div class="row" id="projectsLine1">
<div class="col-md-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_1">
<div class="content">
<h4>Example No.1</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 " href="#" target="_blank">
<div class="content">
<h4>Example No.4</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 3: 2 Columns Boxed -->
<!-- Section "Our Projects" example 4: 3 Columns Boxed & Color Hover -->
<div class="section section-we-made-3 section-with-hover" id="projects1">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">3 Columns Boxed & Color Hover</h5>
<h2>Our Projects</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>In this area you can write some interesting description about the projects that your team created. Don't forget to add some awesome images under this description, like the beautiful ones that we added.</p>
</div>
</div>
<div class="container">
<div class="row" id="projectsLine1">
<div class="col-md-4">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-2" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_1">
<div class="content">
<h4>Example No.1</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-4 " href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_2">
<div class="content">
<h4>Example No.2</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-4" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-2" href="javascript:void(0)" onClick="rubik.showModal(this)" data-target="project_3">
<div class="content">
<h4>Example No.3</h4>
<p>Click to open Rubik modal.</p>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-3" href="#" target="_blank">
<div class="content">
<h4>Example No.4</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 4: 3 Columns Boxed & Color Hover -->
<!-- Section "Our Projects" example 5: Single Line Photos -->
<div class="section section-we-made-2 section-with-hover" id="projects2">
<div class="projects">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">Example No.5</h5>
<h2>Projects section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="info add-animation-stopped animation-1">
<p class="text-center text-gray">One of our best projects outside of America</p>
</div>
<div class="row scroller">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-4">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 color-1" href="#" target="_blank">
<div class="content">
<h4>America Trip</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 5: Single Line Photos -->
<!-- Section "Our Projects" example 6: Multiple Lines Photos -->
<div class="section section-we-made-2 section-with-hover" id="projects2">
<div class="projects">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">Multiple Lines Photos</h5>
<h2>Projects section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
</div>
</div>
<div class="info add-animation-stopped animation-1">
<p class="text-center text-gray">One of our best projects outside of America</p>
</div>
<div class="row scroller">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-4">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 color-1" href="#" target="_blank">
<div class="content">
<h4>America Trip</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
<div class="info add-animation-stopped animation-1">
<p class="text-center text-gray">Europe Project that we are proud of:</p>
</div>
<div class="row scroller">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-1">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-2">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-3">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="project add-animation-stopped animation-4">
<img alt="..." src="assets/img/builder/projects/project.jpg"/>
<a class="over-area color-1 color-1" href="#" target="_blank">
<div class="content">
<h4>Europe Trip</h4>
<p>Click to open a new link.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Section "Our Projects" example 6: Multiple Lines Photos -->
<!-- END SECTION WHAT WE MADE -->
<!-- SECTION CLIENTS -->
<!-- Section "Clients" example 1: 3 Columns Logos -->
<div class="section section-clients-1" id="clients1">
<div class="container">
<div class="text-area">
<div class="title add-animation-stopped">
<h5 class="text-gray">3 Columns Logos</h5>
<h2>Clients Section</h2>
<div class="separator-container">
<div class="separator line-separator">✻</div>
</div>
<p>Here can be a small description about your working process with your clients.</p>
</div>
</div>
<div class="list-logos">
<div class="row">
<div class="col-md-4">
<div class="logo add-animation-stopped animation-1">
<a href="#">
<img alt="..." src="assets/img/clients/forbes.svg"/>
<img alt="..." src="assets/img/clients/forbes_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-2">
<a href="#">
<img alt="..." src="assets/img/clients/intel.svg"/>
<img alt="..." src="assets/img/clients/intel_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-3">
<a href="#">
<img alt="..." src="assets/img/clients/apple.svg"/>
<img alt="..." src="assets/img/clients/apple_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-1">
<a href="#">
<img alt="..." src="assets/img/clients/vaio.svg"/>
<img alt="..." src="assets/img/clients/vaio_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-2">
<a href="#">
<img alt="..." src="assets/img/clients/hp.svg"/>
<img alt="..." src="assets/img/clients/hp_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-3">
<a href="#">
<img alt="..." src="assets/img/clients/samsung.svg"/>
<img alt="..." src="assets/img/clients/samsung_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-1">
<a href="#">
<img alt="..." src="assets/img/clients/canon.svg"/>
<img alt="..." src="assets/img/clients/canon_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">
<div class="logo add-animation-stopped animation-2">
<a href="#">
<img alt="..." src="assets/img/clients/siemens.svg"/>
<img alt="..." src="assets/img/clients/siemens_h.svg"/>
</a>
</div>
</div>
<div class="col-md-4">