-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1643 lines (1617 loc) · 73.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>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"/>
<title>YANIMA STUDIO - Headquarter of Ya</title>
<!-- set your website meta description and keywords -->
<meta name="description" content="Add your business website description here">
<meta name="keywords" content="Add your business website keywords here">
<!-- set your website favicon -->
<link href="yalogo.png" rel="icon">
<!-- Bootstrap Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome Stylesheets -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Owl Carousel Stylesheets -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Lightbox Stylesheets -->
<link rel="stylesheet" href="css/lightbox.min.css">
<!-- Parallax Stylesheets -->
<link rel="stylesheet" href="css/parallax.css" type="text/css">
<!-- Template Main Stylesheets -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- Responsive Stylesheets -->
<link rel="stylesheet" href="css/responsive.css" type="text/css">
</head>
<body>
<!-- start Header -->
<header id="header" class="header">
<div class="header-nav">
<div class="container">
<div class="row">
<div class="col-sm-12">
<nav class="main-menu">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar top-bar"></span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img class="logo logo-white" src="images/yanimastudio-logo-white-noback.png" alt="logo">
<img class="logo logo-color" src="images/yanimastudio-logo-blue-noback.png" alt="logo">
</a>
</div><!--End navbar-header -->
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#pricingtable">Pricing</a></li>
<li><a href="#blog">Blog</a></li>
<li><a class="last" href="#contact">Contact</a></li>
</ul>
</div><!--End navbar -->
</nav>
</div><!--End col -->
</div><!--End row -->
</div><!--End container -->
</div><!--End header-nav -->
</header>
<!-- end Header -->
<!-- start slider and home section -->
<section id="home" class="home video-bg" data-vide-bg="media/abc.mp4" data-vide-options="position: 50% 50%">
<div class="home-top-banner background-transparent">
<div class="display-table">
<div class="display-table-cell">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="banner-content banner-content-fullwidth">
<h3>Hi, I'm</h3>
<h1 class="header-title-text type-animate">
<a href="" class="typewrite" data-period="2000" data-type='[ "Yanima Studio", "Freelancer", "Animation Studio", "From Viet Nam" ]'>
<span class="wrap"></span>
</a>
</h1>
<ul class="list-inline list-social">
<li>
<a href="https://www.facebook.com/yanimastudio/" class="social-icon social-icon-facebook" target="_blank">
<i class="fa fa-facebook"></i>
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="https://twitter.com/yanima_studio" class="social-icon social-icon-twitter" target="_blank">
<i class="fa fa-twitter"></i>
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCKLDH-A0aD4XQLwcrlB3oIg" class="social-icon social-icon-youtube" target="_blank">
<i class="fa fa-youtube"></i>
<i class="fa fa-youtube"></i>
</a>
</li>
<li>
<a href="#" class="social-icon social-icon-pinterest">
<i class="fa fa-pinterest"></i>
<i class="fa fa-pinterest"></i>
</a>
</li>
<li>
<a href="#" class="social-icon social-icon-linkedin">
<i class="fa fa-linkedin"></i>
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div><!--End banner-content -->
</div><!--End col-sm-12 -->
</div><!--End row -->
</div><!--End container -->
</div><!--End display-table-cell -->
</div><!--End display-table -->
</div><!--End home-top-banner -->
</section>
<!-- end slider and home section -->
<!-- start About section -->
<section id="about" class="about about-timeline-style">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title">About <strong><br>Yanima Studio</br></strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
</div><!-- end col -->
<div class="col-sm-12">
<div class="row">
<div class="col-sm-6">
<div class="profile-image">
<img src="images/profile/Ya.png" alt="profile photo">
</div><!-- end profile-image -->
</div><!-- end col -->
<div class="col-sm-6">
<div class="about-text">
<p></p>
<p>There was a man who lived in Ha Long, Quang Ninh, Viet Nam. He has been into cartoons, stories and music since childhood. He got a lot of awesome ideas, but an animation studio is no where to be found where he lived. And no one can help. He decided to be a coolest lone wolf in the area and found a studio by he himself. He calls it Yanima Studio.</p>
Yanima Studio currently including:
<br>- Yanima: Animation video</br>
- Yaongaku: Music
<br>- Yasakka: Stories, comics, novels</br>
- Yakatzu: Predictions and animation graphs
<p>- Yasutaku: Inventions, technical and engineering related to animation and music</p>
<p>Yanima Studio's duty is to bring animation video and music to life.</p>
<div class="button-holder">
<!--<a class="btn btn-shutter-out-horizontal" href="#">Download Resume</a>-->
<a class="btn btn-shutter-out-horizontal" href="#contact">Contact Me</a>
</div><!-- end button-holder -->
</div><!-- about-text -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end col-sm-12 -->
<div class="col-sm-12">
<div class="nav-tab-menu">
<ul class="nav nav-tabs">
<li class="active">
<button data-toggle="tab" data-target="#tab1" aria-expanded="true">
<i class="fa fa-paper-plane-o"></i>
<span class="tab-title text-bold">Experience</span>
</button>
</li>
<li>
<button data-toggle="tab" data-target="#tab2" aria-expanded="false">
<i class="fa fa-graduation-cap"></i>
<span class="tab-title text-bold">Education</span>
</button>
</li>
<li>
<button data-toggle="tab" data-target="#tab3" aria-expanded="false">
<i class="fa fa-trophy"></i>
<span class="tab-title text-bold">Award</span>
</button>
</li>
<li>
<button data-toggle="tab" data-target="#tab4" aria-expanded="false">
<i class="fa fa-diamond"></i>
<span class="tab-title text-bold">Skills</span>
</button>
</li>
</ul>
</div>
<div class="tab-content">
<div id="tab1" class="tab-pane fade active in">
<div class="icon-holder experience">
<i class="fa fa-paper-plane-o"></i>
<span class="tab-content-title text-bold">Experience</span>
</div>
<ul class="timeline">
<li class="timeline-right">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date-inverted">August 2019 - Current</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>Yanima Studio</h4>
<h5>Director</h5>
<p>Makes everything official</p>
</div>
</div><!--end timeline-panel -->
</li><!-- end timeline-right -->
<li class="timeline-left">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date">Oct 2017 - Nov 2019</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>Yanima Studio</h4>
<h5>Animator, Musician </h5>
<p>Adding animation to be able to make both video and music</p>
</div>
</div><!-- end timeline-panel -->
</li><!-- end timeline-left -->
<li class="timeline-right">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date-inverted">Sep 2011 - Sep 2016</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>Yanima Studio</h4>
<h5>Musician</h5>
<p>From a rock/metal guitarist, became musician who can makes not only rock and metal but also makes orchestral, ambient, pop ballad music</p>
</div>
</div><!-- end timeline-panel -->
</li><!-- end timeline-right -->
</ul><!-- end timeline -->
</div>
<div id="tab2" class="tab-pane fade">
<div class="icon-holder education">
<i class="fa fa-graduation-cap"></i>
<span class="tab-content-title text-bold">Education</span>
</div>
<ul class="timeline">
<li class="timeline-left">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date">2011 - 2016</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>Bachelor's Degree</h4>
<h5>Volgograd State Technical University</h5>
<p>Studied Applied Information Technology and received Bachelor's Degree</p>
</div>
</div><!--end timeline-panel -->
</li><!-- end timeline-left -->
<li class="timeline-right">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date-inverted">2006 - 2011</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>School Education</h4>
<h5>Ha Long, Quang Ninh, Viet Nam</h5>
<p>Studied and finished school education</p>
</div>
</div><!-- end timeline-panel -->
</li><!-- end timeline-right -->
<!--<li class="timeline-left">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date">2006 - 2007</p>
</div>--><!-- end timeline-badge -->
<!--<div class="timeline-panel">
<div class="experience-content">
<h4>School Education</h4>
<h5>School Name here</h5>
<p>The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks.</p>
</div>
</div>--><!-- end timeline-panel -->
<!--</li>--><!-- end timeline-left -->
</ul><!-- end timeline -->
</div>
<div id="tab3" class="tab-pane fade">
<div class="icon-holder education">
<i class="fa fa-trophy"></i>
<span class="tab-content-title text-bold">Award</span>
</div>
<ul class="timeline">
<li class="timeline-right">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date-inverted">May 2015</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>University's award of performance</h4>
<h5>Volgograd State Technical University</h5>
<p>Together with Mr. Namusura and Mr. Denis Kutepov, we formed a band and performed in university concert and received an award.</p>
</div>
</div><!--end timeline-panel -->
</li><!-- end timeline-right -->
<li class="timeline-left">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date">August 2013</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>University's award of performance</h4>
<h5>Volgograd State Technical University</h5>
<p>Solo performed in school concert and received an award.</p>
</div>
</div><!--end timeline-panel -->
</li><!-- end timeline-right -->
<li class="timeline-right">
<div class="timeline-badge">
<i class="fa fa-calendar"></i>
<p class="date-inverted">March 2012</p>
</div><!-- end timeline-badge -->
<div class="timeline-panel">
<div class="experience-content">
<h4>University's award of performance</h4>
<h5>Volgograd State Technical University</h5>
<p>Solo performed in University concert and received an award.</p>
</div>
</div><!--end timeline-panel -->
</li><!-- end timeline-right -->
</ul><!-- end timeline -->
</div>
<div id="tab4" class="tab-pane fade">
<div class="row">
<div class="progressbar-wrap">
<div class="col-xs-3">
<div class="progressbar" data-animate="false">
<div class="circle" data-percent="98.7" data-color="#00abee">
<div></div>
<p>Music Engineering</p>
</div><!-- end circle -->
</div><!-- end progressbar -->
</div><!-- end col -->
<div class="col-xs-3">
<div class="progressbar" data-animate="false">
<div class="circle" data-percent="95.8" data-color="#00abee">
<div></div>
<p>Animation</p>
</div><!-- end circle -->
</div><!-- end progressbar -->
</div><!-- end col -->
<div class="col-xs-3">
<div class="progressbar" data-animate="false">
<div class="circle" data-percent="90.5" data-color="#00abee">
<div></div>
<p>Video Editing</p>
</div><!-- end circle -->
</div><!-- end progressbar -->
</div><!-- end col -->
<div class="col-xs-3">
<div class="progressbar" data-animate="false">
<div class="circle" data-percent="78.2" data-color="#00abee">
<div></div>
<p>Stories Writing</p>
</div><!-- end circle -->
</div><!-- end progressbar -->
</div><!-- end col -->
</div><!-- end progressbar-wrap -->
</div><!-- end row -->
</div>
</div><!-- end tab-content -->
</div><!-- end col-sm-12 -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end About section -->
<!-- start service -->
<section id="service" class="service service-3-column parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title">My <strong>Services</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<div class="intro-text text-center">
<!--Text here-->
</div><!-- end intro-text -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="fa fa-music"></i>
</div>
<div class="service-short-content-box">
<h3>Music Making</h3>
<p>The job of Yaongaku. We write, arrange, mixing, mastering sounds and music in genres: Rock, Metal, Ambient, Orchestral, Symphonic, Pop Ballad</p>
<a class="btn btn-shutter-out-horizontal" href="https://yanimastudio.com/yaongaku" target="_blank">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="fa fa-paint-brush"></i>
</div>
<div class="service-short-content-box">
<h3>Drawing, Story Creating</h3>
<p>The job of Yasakka with helps from Yanima, we make digital painting and drawing, bring them into stories, and animate them if needed.</p>
<a class="btn btn-shutter-out-horizontal" href="https://yanimastudio.com/yasakka" target="_blank">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="fa fa-desktop"></i>
</div>
<div class="service-short-content-box">
<h3>Web Design</h3>
<p>The job of Yasakka and Yasutaku, we bring a combination of an artist and a technician to the website. If needed, Yanima will helps for the uniqueness</p>
<a class="btn btn-shutter-out-horizontal" href="">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="#" ><img src="fonts/chess-knight-solid.svg" width="35%"></i>
</div>
<div class="service-short-content-box">
<h3>Predictions</h3>
<p>The job of Yakatzu. This provides predictions, not about price of the Market, but about people's relationships. For example, a war.</p>
<a class="btn btn-shutter-out-horizontal" href="https://www.facebook.com/Yakatzu-110177064133089" target="_blank">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="fa fa-laptop"></i>
</div>
<div class="service-short-content-box">
<h3>Technique, Luthiery</h3>
<p>The job of Yasutaku. Anything related to Animation and Music, but technique. Such as providing AI solutions, making a guitar, building arduino projects, etc.</p>
<a class="btn btn-shutter-out-horizontal" href="https://www.facebook.com/Yasutaku-100477275335634" target="_blank">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
<div class="col-md-4 col-xs-6">
<div class="service-wrap">
<div class="service-box">
<div class="service-box-wrap">
<div class="service-icon-box">
<i class="fa fa-question"></i>
</div>
<div class="service-short-content-box">
<h3>You Tell Me</h3>
<p>The job of all Yas that you can figure out. Please leave your order down here and we are willing to help if it's in our power. </p>
<a class="btn btn-shutter-out-horizontal" href="#contact">Read More</a>
</div>
</div><!-- end service-box-wrap -->
</div><!-- end service-box -->
</div><!-- end service-wrap -->
</div><!-- end col -->
</div><!-- end row -->
</div><!--End Container -->
</section>
<!-- end service -->
<!-- start team -->
<section id="team" class="our-team">
<div class="container">
<div class="row" >
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title">My <strong>Team</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<div class="intro-text text-center">
<!--A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my heart.-->
</div><!-- end intro-text -->
</div><!--End col-sm-12 -->
<div class="col-md-3 col-xs-6">
<div class="team-wrap">
<div class="team-thumb">
<img src="images/team/yaongaku.jpg" alt="Yaongaku">
</div><!-- end team-thumb -->
<div class="team-social-box">
<a href="https://www.facebook.com/Yaongaku" class="social-icon social-icon-small social-icon-facebook">
<i class="fa fa-facebook"></i>
<i class="fa fa-facebook"></i>
</a>
<a href="https://twitter.com/yaongaku_music" class="social-icon social-icon-small social-icon-twitter">
<i class="fa fa-twitter"></i>
<i class="fa fa-twitter"></i>
</a>
<a href="mailto: [email protected]" class="social-icon social-icon-small social-icon-gmail">
<i class="fa fa-envelope"></i>
<i class="fa fa-envelope"></i>
<a href="https://yanimastudio.com/yaongaku" target="_blank"class="social-icon social-icon-small social-icon-globe">
<i class="fa fa-globe"></i>
<i class="fa fa-globe"></i>
</a>
</div><!-- end team-social -->
<div class="team-details">
<div class="details-plain">
<p>Yaongaku, the one who makes music. <br>Email: <b>[email protected]</b></br></p>
</div><!-- end details-plain -->
<div class="details-overly">
<div class="team-title">
<h4>Yaongaku</h4>
<h5>Musician & Songwriter</h5>
</div><!-- end team-title -->
</div><!-- end details-overly -->
</div><!-- end team-details -->
</div><!-- end team-wrap -->
</div><!-- end col -->
<div class="col-md-3 col-xs-6">
<div class="team-wrap">
<div class="team-thumb">
<img src="images/team/yasakka.png" alt="Yasakka">
</div><!-- end team-thumb -->
<div class="team-social-box">
<a href="https://www.facebook.com/Yasakka-101405958161865" class="social-icon social-icon-small social-icon-facebook">
<i class="fa fa-facebook"></i>
<i class="fa fa-facebook"></i>
</a>
<a href="https://twitter.com/Yasakka1" class="social-icon social-icon-small social-icon-twitter">
<i class="fa fa-twitter"></i>
<i class="fa fa-twitter"></i>
</a>
</div><!-- end team-social -->
<div class="team-details">
<div class="details-plain">
<p>Yasakka, the one who makes artworks and stories. <br>Email: <b><small>[email protected]</small></b></br></p>
</div><!-- end details-plain -->
<div class="details-overly">
<div class="team-title">
<h4>Yasakka</h4>
<h5>Author, Stories Maker, Artist</h5>
</div><!-- end team-title -->
</div><!-- end details-overly -->
</div><!-- end team-details -->
</div><!-- end team-wrap -->
</div><!-- end col -->
<div class="col-md-3 col-xs-6">
<div class="team-wrap" >
<div class="team-thumb">
<img src="images/team/yakatzu.png" alt="Yakatzu">
</div><!-- end team-thumb -->
<div class="team-social-box">
<a href="https://www.facebook.com/Yakatzu-110177064133089" class="social-icon social-icon-small social-icon-facebook">
<i class="fa fa-facebook"></i>
<i class="fa fa-facebook"></i>
</a>
<a href="https://twitter.com/Yakatzu1" class="social-icon social-icon-small social-icon-twitter">
<i class="fa fa-twitter"></i>
<i class="fa fa-twitter"></i>
</a>
</div><!-- end team-social -->
<div class="team-details">
<div class="details-plain">
<p>Yakatzu, the one who makes predictions. <br>Email: <b><small>[email protected]</small></b></br></p>
</div><!-- end details-plain -->
<div class="details-overly">
<div class="team-title">
<h4>Yakatzu</h4>
<h5>Predictor</h5>
</div><!-- end team-title -->
</div><!-- end details-overly -->
</div><!-- end team-details -->
</div><!-- end team-wrap -->
</div><!-- end col -->
<div class="col-md-3 col-xs-6">
<div class="team-wrap">
<div class="team-thumb">
<img src="images/team/yasutaku.png" alt="Yasutaku">
</div><!-- end team-thumb -->
<div class="team-social-box">
<a href="https://www.facebook.com/Yasutaku-100477275335634" class="social-icon social-icon-small social-icon-facebook">
<i class="fa fa-facebook"></i>
<i class="fa fa-facebook"></i>
</a>
<a href="#" class="social-icon social-icon-small social-icon-twitter">
<i class="fa fa-twitter"></i>
<i class="fa fa-twitter"></i>
</a>
</div><!-- end team-social -->
<div class="team-details">
<div class="details-plain">
<p>Yasutaku, the one who deals with technical jobs. <br>Email: <b><small>[email protected]</small></b></br></p>
</div><!-- end details-plain -->
<div class="details-overly">
<div class="team-title">
<h4>Yasutaku</h4>
<h5>Technician</h5>
</div><!-- end team-title -->
</div><!-- end details-overly -->
</div><!-- end team-details -->
</div><!-- end team-wrap -->
</div><!-- end col -->
</div><!-- end row -->
</div><!--End Container -->
</section><!-- End Team -->
<!-- end team -->
<!-- start portfolio -->
<section id="portfolio" class="filter-section portfolio-style2 parallax">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title"> <strong>Gallery</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<div class="intro-text text-center">
Let's take a look on works of the Ya
</div><!-- end intro-text -->
</div><!-- end col -->
<div class="col-sm-12">
<!-- start filter-container -->
<div class="filter-container isotopeFilters">
<ul class="list-inline filter">
<li class="active"><a href="#" data-filter="*">All </a></li>
<li><a href="#" data-filter=".illustrations">Illustrations</a></li>
<li><a href="#" data-filter=".photography">Photography</a></li>
<li><a href="#" data-filter=".websites">Websites</a></li>
<li><a href="#" data-filter=".art">Art</a></li>
</ul>
</div><!--End filter-container -->
</div><!--End col-sm-12 -->
<div class="col-sm-12">
<div class="row">
<div class="isotopeContainer">
<div class="col-md-3 col-xs-6 no-space isotopeSelector websites">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/1.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="websites" data-title="Image Preview" href="images/portfolio/1.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector photography">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/2.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="photography" data-title="Image Preview" href="images/portfolio/2.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector art">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/3.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="art" data-title="Image Preview" href="images/portfolio/3.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector photography">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/4.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="photography" data-title="Image Preview" href="images/portfolio/4.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector websites">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/5.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="websites" data-title="Image Preview" href="images/portfolio/5.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector illustrations">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/6.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="illustrations" data-title="Image Preview" href="images/portfolio/6.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector art">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/7.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="art" data-title="Image Preview" href="images/portfolio/7.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector illustrations">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/8.jpg" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="illustrations" data-title="Image Preview" href="images/portfolio/8.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
<div class="col-md-3 col-xs-6 no-space isotopeSelector photography">
<div class="portfolio-wrapper">
<img src="images/portfolio/thumb/final1-small.png" alt="Portfolio Title">
<div class="portfolio-overlay">
<div class="portfolio-overlay-inner">
<div class="portfolio-overlay-content">
<div class="portfolio-link">
<a title="Details" href="single-portfolio.html"><i class="fa fa-link"></i></a>
<a data-lightbox="photography" data-title="Image Preview" href="images/portfolio/4.jpg"><i class="fa fa-search-plus"></i></a>
</div><!--End portfolio-link -->
<div class="portfolio-caption">
<h3><a href="single-portfolio.html">Portfolio Title</a></h3>
</div><!--End portfolio-caption -->
</div><!--End portfolio-overlay-content -->
</div><!--End portfolio-overlay-inner -->
</div><!--End portfolio-overlay -->
</div><!--End portfolio-wrapper -->
</div>
</div><!--End isotopeContainer -->
</div>
</div> <!--End col-sm-12 -->
</div><!-- end row -->
</div><!--End container -->
</section>
<!-- end portfolio -->
<!--Dung <script> de boc comment trong comment-->
<script>
/*
<!-- start Pricing Plan 14 -->
<section id="pricingtable" class="pricing">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title">Pricing <strong>Plan</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<div class="intro-text text-center">
A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my heart.
</div><!-- end intro-text -->
</div><!-- end col -->
</div><!-- end row -->
<div class="row">
<div class="col-sm-4">
<div class="pricing-plan-wrap">
<div class="pricing-plan-header">
<h3>Starter</h3>
<div class="price-holder">
<p class="dolar"><sup>$</sup>19</p>
<sub>/month<strong>*</strong></sub>
</div><!-- end price-holder -->
</div><!-- end pricing-plan-header -->
<ul class="list-unstyled">
<li>10GB Storage</li>
<li>10 Emails</li>
<li>10 Domains</li>
<li>Unlimited Bandwidth</li>
</ul><!-- end list -->
<a class="btn btn-shutter-out-horizontal" href="#">Choose Plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
<div class="col-sm-4">
<div class="pricing-plan-wrap active">
<div class="pricing-plan-header">
<h3>Standard</h3>
<div class="price-holder">
<p class="dolar"><sup>$</sup>29</p>
<sub>/month<strong>*</strong></sub>
</div><!-- end price-holder -->
</div><!-- end pricing-plan-header -->
<ul class="list-unstyled">
<li>15GB Storage</li>
<li>15 Emails</li>
<li>15 Domains</li>
<li>Unlimited Bandwidth</li>
</ul><!-- end list -->
<a class="btn btn-shutter-out-horizontal" href="#">Choose Plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
<div class="col-sm-4">
<div class="pricing-plan-wrap">
<div class="pricing-plan-header">
<h3>Premium</h3>
<div class="price-holder">
<p class="dolar"><sup>$</sup>39</p>
<sub>/month<strong>*</strong></sub>
</div><!-- end price-holder -->
</div><!-- end pricing-plan-header -->
<ul class="list-unstyled">
<li>20GB Storage</li>
<li>20 Emails</li>
<li>20 Domains</li>
<li>Unlimited Bandwidth</li>
</ul><!-- end list -->
<a class="btn btn-shutter-out-horizontal" href="#">Choose Plan</a>
</div><!-- end pricing-plan-wrap -->
</div><!-- end pricing-plan -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end Pricing Plan 14 -->
<!-- start quotes-section -->
<section id="quotes-section" class="quotes-section parallax">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="quotes-wrap text-center">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title">Let's Work <strong>Together</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<p>I am available for freelance.</p>
<a class="btn btn-shutter-out-horizontal btn-transparent" href="#contact">Get Quotes</a>
</div>
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<!-- end quotes-section -->
*/</script>
<!-- start blog -->
<section id="blog" class="blog blog-style2">
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- start section title-wrap -->
<div class="title-wrap">
<div class="section-title-box">
<h2 class="section-title"><strong>NEWS</strong></h2>
</div><!-- end section-title-box -->
</div>
<!-- end section title-wrap -->
<div class="intro-text text-center">
News will be here when there is something new.
</div><!-- end intro-text -->
</div><!-- end col -->
</div><!-- end row -->
<script>/*
<div class="row">
<div class="col-sm-12">
<div class="owl-carousel">
<div class="item">
<article class="post-wrap">
<div class="post-thumb">
<img src="images/blog/thumb/1.jpg" alt="Blog Image">
</div><!--End post-thumb -->
<div class="post-content">
<div class="post-title">
<h3><a href="single-blog.html">A small river named Duden place</a></h3>
</div><!--End post-title -->
<div class="post-excerpt">
<p>The Big Oxmox advised her not to do so, because there were... <a class="btn-more" href="single-blog.html">Read More <i class="fa fa-angle-double-right"></i></a></p>
</div><!--End post-excerpt -->
<div class="post-meta">
<span><i class="fa fa-user"></i><a href="#">Zinia Jones</a></span>
<span><i class="fa fa-calendar"></i><a href="#">Oct 12, 2017</a></span>
<span><i class="fa fa-comments"></i><a href="#">8</a></span>
</div><!--End post-meta -->
</div><!--End post-content -->
</article><!--End post-wrap -->
</div><!--End item -->
<div class="item">
<article class="post-wrap">
<div class="post-thumb">
<img src="images/blog/thumb/2.jpg" alt="Blog Image">
</div><!--End post-thumb -->
<div class="post-content">
<div class="post-title">
<h3><a href="single-blog.html">A small river named Duden place</a></h3>
</div><!--End post-title -->
<div class="post-excerpt">
<p>The Big Oxmox advised her not to do so, because there were... <a class="btn-more" href="single-blog.html">Read More <i class="fa fa-angle-double-right"></i></a></p>
</div><!--End post-excerpt -->