-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1201 lines (1010 loc) · 110 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="ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js" lang="en-US"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js" lang="en-US"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 ie-lt10 ie-lt9 no-js" lang="en-US"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 ie-lt10 no-js" lang="en-US"> <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" lang="en-US"><!--<![endif]-->
<!-- the "no-js" class is for Modernizr. -->
<head>
<meta charset="UTF-8">
<title>Biet Doi Khoi Nghiep - 2015</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="favicon/[email protected]" rel="icon">
<link href="favicon/iphone-favicon.png" rel="apple-touch-icon">
<link href="favicon/[email protected]" rel="apple-touch-icon" sizes="76x76" />
<link href="favicon/ipad-favicon.png" rel="apple-touch-icon" sizes="120x120" />
<link href="favicon/[email protected]" rel="apple-touch-icon" sizes="152x152" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- Custom CSS -->
<style type="text/css">
</style>
<style>
.wpb_btn-success, #itemcontainer-controller {
background-color: #c1996e!important;
}
.hoveredIcon {
color:#c1996e!important;
}
.bka_menu, .bka_menu .container, .navbar-collapse.in, .navbar-collapse.colapsing {
background-color: #1a1817;
}
.dropdown-menu {
border-top:2px solid #c1996e!important;
}
.wpcf7 input[type="submit"] {
background-color: #00ACC1;
}
.topborder h3 a {
border-top: 1px solid #00ACC1;
}
ul.nav a.active {
color: #00BCD4 !important;
}
</style>
<!-- VC COMBINED STYLES -->
<style type="text/css" data-type="vc-shortcodes-custom-css"> .vc_custom_1412594487477{padding-top: 70px !important;}.vc_custom_1412594989349{padding-top: 100px !important;}.vc_custom_1412595932954{padding-top: 100px !important;}.vc_custom_1412595547107{padding-top: 50px !important;}.vc_custom_1412595262734{padding-top: 20px !important;}.vc_custom_1412600925018{padding-top: 100px !important;}.vc_custom_1412600088436{padding-top: 20px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1406639862096{padding-top: 100px !important;}.vc_custom_1406628276121{margin-bottom: 0px !important;}.vc_custom_1412602126754{padding-top: 50px !important;}.vc_custom_1412601467939{padding-bottom: 100px !important;}.vc_custom_1412602459145{margin-bottom: 10px !important;}.vc_custom_1412602485403{margin-top: -20px !important;}.vc_custom_1412602643914{margin-bottom: 10px !important;}.vc_custom_1412602563510{margin-top: -20px !important;}.vc_custom_1412602649692{margin-bottom: 10px !important;}.vc_custom_1412602584654{margin-top: -20px !important;}.vc_custom_1412602655039{margin-bottom: 10px !important;}.vc_custom_1412602621391{margin-top: -20px !important;} </style> <!-- / VC COMBINED STYLES -->
<style type="text/css" title="dynamic-css" class="options-output">body, #pagesContent{color:#666666;}.theme_dominant_color{color:#00BCD4;}.dark_scheme{color:#dbdbdb;}.dark_scheme h1{color:#00BCD4;}.dark_scheme h2{color:#00BCD4;}.dark_scheme h3{color:#e0e0e0;}.dark_scheme h4{color:#c1996e;}.dark_scheme h5{color:#ffffff;}.dark_scheme h6{color:#ffffff;}.dark_scheme a{color:#ffffff;}.dark_scheme a:hover{color:#00BCD4;}.light_scheme{color:#212b31;}.light_scheme h1{color:#212b31;}.light_scheme h2{color:#212b31;}.light_scheme h3{color:#666666;}.light_scheme h4{color:#212b31;}.light_scheme h5{color:#222222;}.light_scheme h6{color:#222222;}.light_scheme a{color:#212b31;}.light_scheme a:hover{color:#c1996e;}body{font-family:Raleway;font-weight:300;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;}h1{font-family:Raleway;font-weight:200;font-style:normal;font-size:48px;line-height:60px;word-spacing:px;letter-spacing:px;}h2{font-family:Raleway;font-weight:800;font-style:normal;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h3{font-family:Georgia, serif;font-weight:normal;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;}h4{font-family:Raleway;font-weight:800;font-style:normal;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h5{font-family:Raleway;font-weight:800;font-style:normal;text-transform:uppercase;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h6{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-size:12px;line-height:18px;word-spacing:px;letter-spacing:px;}.bka_menu, .bka_menu .navbar-default .navbar-nav>li>a, .dropdown-menu > li > a{font-family:Raleway;font-weight:500;font-style:normal;font-size:12px;line-height:24px;word-spacing:px;letter-spacing:1px;}.bka_menu .navbar-default .navbar-nav>li>a,.dropdown-menu>li>a{color:#ffffff;}.bka_menu .navbar-default .navbar-nav>li>a:hover,.dropdown-menu>li>a{color:#00ACC1;}.bka_menu{border-top:inherit solid #cecece;border-right:inherit solid #cecece;border-bottom:inherit solid #cecece;border-left:inherit solid #cecece;}body.blog, body.single-post{font-family:Open Sans;font-weight:400;font-style:normal;font-size:12px;line-height:30px;word-spacing:px;letter-spacing:px;color:#666666;}.blog h1, body.single-post h1{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:24px;line-height:30px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h2, body.single-post h2{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h3, body.single-post h3{font-family:Georgia, serif;font-weight:normal;font-style:normal;font-size:22px;line-height:38px;word-spacing:px;letter-spacing:px;color:#646464;}.blog h4, body.single-post h4{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h5, body.single-post h5{font-family:Open Sans;font-weight:600;font-style:normal;font-size:46px;line-height:50px;word-spacing:px;letter-spacing:px;color:#646464;}.blog h6, body.single-post h6{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-size:16px;line-height:24px;word-spacing:px;letter-spacing:px;color:#646464;}.blog a{color:#000000;}.blog a:hover{color:#49e2d6;}</style> <style>.wf-loading *, .wf-inactive * {visibility: hidden;}.wf-active *{visibility:visible;}</style>
<script>
/* You can add more configuration options to webfontloader by previously defining the WebFontConfig with your options */
if (typeof WebFontConfig === "undefined") { WebFontConfig = new Object(); }
WebFontConfig['google'] = { families: ['Raleway:300,200,800,500', 'Source+Sans+Pro:300', 'Open+Sans:400,600', 'Roboto+Condensed:400&subset=latin'] };
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.0/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<link rel='stylesheet' id='contact-form-7-css' href='css/contact-form-7/styles.css?ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='hgr-vc-fa-icons-css' href='css/font-awesome.min.css?ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='hgr-vc-outline-icons-css' href='css/outline.min.css?ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='hgr-vc-extender-style-css' href='css/hgr-vc-extender-elements.min.css?ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css' href='css/settings.css?rev=4.6.0&ver=4.0.1' type='text/css' media='all' />
<style type='text/css'>
.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}
</style>
<link rel='stylesheet' id='tp-open-sans-css' href='http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700%2C800&ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='tp-raleway-css' href='http://fonts.googleapis.com/css?family=Raleway%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='tp-droid-serif-css' href='http://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700&ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='tp-source-sans-css' href='http://fonts.googleapis.com/css?family=Source+Sans+Pro%3A300%2C400&ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='essential-grid-plugin-settings-css' href='css/essential/settings.css?ver=1.5.2' type='text/css' media='all' />
<link rel='stylesheet' id='css-bootstrap-css' href='css/bootstrap.min.css?ver=3.1.1' type='text/css' media='all' />
<link rel='stylesheet' id='hgr-icons-css' href='css/icons.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='css-fontawesome-css' href='css/awesome/font-awesome.min.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='css-component-css' href='css/component.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='css-venobox-css' href='css/venobox.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='theme-css-css' href='css/style.css?ver=4.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='css/js_composer.css?ver=4.3.4' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_custom_css-css' href='css/custom.css?ver=4.3.4' type='text/css' media='screen' />
<script type='text/javascript' src='js/jquery.js?ver=1.11.1'></script>
<script type='text/javascript' src='js/jquery-migrate.min.js?ver=1.2.1'></script>
<script type='text/javascript' src='js/jquery.themepunch.tools.min.js?rev=4.6.0&ver=4.0.1'></script>
<script type='text/javascript' src='js/jquery.themepunch.revolution.min.js?rev=4.6.0&ver=4.0.1'></script>
<script type='text/javascript' src='js/jquery.themepunch.essential.min.js?ver=1.5.2'></script>
<script type='text/javascript' src='js/modernizr.custom.js?ver=1.0'></script>
<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&ver=4.0.1'></script>
<script type='text/javascript' src='js/classie.js?ver=4.0.1'></script>
<script type='text/javascript' src='js/uiMorphingButton_fixed.js?ver=4.0.1'></script>
<script type='text/javascript' src='js/uiMorphingButton_inflow.js?ver=4.0.1'></script>
<meta name="generator" content="VSOFT Solution" />
<link rel='canonical' href='http://bietdoikhoinghiep.com/' />
<link rel='shortlink' href='http://bietdoikhoinghiep.com/' />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<meta name="generator" content="VSOFT Solution."/>
<!--[if IE 8]><link rel="stylesheet" type="text/css" href="css/vc-ie8.css" media="screen"><![endif]--><style type="text/css" title="dynamic-css" class="options-output">body, #pagesContent{color:#666666;}.theme_dominant_color{color:#00BCD4;}.dark_scheme{color:#dbdbdb;}.dark_scheme h1{color:#00BCD4;}.dark_scheme h2{color:#00BCD4;}.dark_scheme h3{color:#e0e0e0;}.dark_scheme h4{color:#c1996e;}.dark_scheme h5{color:#ffffff;}.dark_scheme h6{color:#ffffff;}.dark_scheme a{color:#ffffff;}.dark_scheme a:hover{color:#00BCD4;}.light_scheme{color:#212b31;}.light_scheme h1{color:#212b31;}.light_scheme h2{color:#212b31;}.light_scheme h3{color:#666666;}.light_scheme h4{color:#212b31;}.light_scheme h5{color:#222222;}.light_scheme h6{color:#222222;}.light_scheme a{color:#212b31;}.light_scheme a:hover{color:#c1996e;}body{font-family:Raleway;font-weight:300;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;}h1{font-family:Raleway;font-weight:200;font-style:normal;font-size:48px;line-height:60px;word-spacing:px;letter-spacing:px;}h2{font-family:Raleway;font-weight:800;font-style:normal;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h3{font-family:Georgia, serif;font-weight:normal;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;}h4{font-family:Raleway;font-weight:800;font-style:normal;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h5{font-family:Raleway;font-weight:800;font-style:normal;text-transform:uppercase;font-size:14px;line-height:30px;word-spacing:px;letter-spacing:px;}h6{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-size:12px;line-height:18px;word-spacing:px;letter-spacing:px;}.bka_menu, .bka_menu .navbar-default .navbar-nav>li>a, .dropdown-menu > li > a{font-family:Raleway;font-weight:500;font-style:normal;font-size:12px;line-height:24px;word-spacing:px;letter-spacing:1px;}.bka_menu .navbar-default .navbar-nav>li>a,.dropdown-menu>li>a{color:#ffffff;}.bka_menu .navbar-default .navbar-nav>li>a:hover,.dropdown-menu>li>a{color:#00ACC1;}.bka_menu{border-top:inherit solid #cecece;border-right:inherit solid #cecece;border-bottom:inherit solid #cecece;border-left:inherit solid #cecece;}body.blog, body.single-post{font-family:Open Sans;font-weight:400;font-style:normal;font-size:12px;line-height:30px;word-spacing:px;letter-spacing:px;color:#666666;}.blog h1, body.single-post h1{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:24px;line-height:30px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h2, body.single-post h2{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h3, body.single-post h3{font-family:Georgia, serif;font-weight:normal;font-style:normal;font-size:22px;line-height:38px;word-spacing:px;letter-spacing:px;color:#646464;}.blog h4, body.single-post h4{font-family:Roboto Condensed;font-weight:400;font-style:normal;font-size:14px;line-height:24px;word-spacing:px;letter-spacing:px;color:#000000;}.blog h5, body.single-post h5{font-family:Open Sans;font-weight:600;font-style:normal;font-size:46px;line-height:50px;word-spacing:px;letter-spacing:px;color:#646464;}.blog h6, body.single-post h6{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-size:16px;line-height:24px;word-spacing:px;letter-spacing:px;color:#646464;}.blog a{color:#000000;}.blog a:hover{color:#49e2d6;}</style></head>
<body class="home page page-id-6 page-parent page-template-default wpb-js-composer js-comp-ver-4.3.4 vc_responsive">
<div class="row bkaTopmenu bka_menu hidden">
<div class="container">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#hgr-navbar-collapse-1"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="http://bietdoikhoinghiep.com"><img src="images/logo-creative-white.png" width="174" height="60" alt="Shore - Creative Studio" class="logo" /></a></div>
<div class="collapse navbar-collapse" id="hgr-navbar-collapse-1">
<ul id="mainNavUl" class="nav navbar-nav navbar-right">
<li id="menu-item-2064" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2064"><a title="About Us" href="#about-us">About Us</a></li>
<li id="menu-item-2065" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2065"><a title="Services" href="#services">Services</a></li>
<li id="menu-item-2066" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2066"><a title="Portfolio" href="#portfolio">Portfolio</a></li>
<li id="menu-item-2067" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2067"><a title="Testimonials" href="#testimonials">Testimonials</a></li>
<li id="menu-item-2068" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2068"><a title="Contact" href="#contact">Liên hệ</a></li>
</ul> </div>
</nav>
</div>
</div>
<!--/ header -->
<div class="top">
<a href="#" class="back-to-top"><i class="icon fa fa-angle-double-up"></i></a>
</div><!-- front-page.php -->
<!-- Site home page -->
<!-- Page with ID: 8 -->
<div id="slider" class="pagesection row light_scheme" style=" ">
<div class="col-md-12" >
<div class="container">
<div class="slideContent gu12">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_revslider_element wpb_content_element"><!-- START REVOLUTION SLIDER 4.6.0 fullscreen mode -->
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullscreen-container" style="background-color:#1a1817;padding:0px;">
<div id="rev_slider_1_1" class="rev_slider fullscreenbanner" style="display:none;">
<ul> <!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="images/creative/292684-0-sliderbg1.jpg" alt="creative-studio-1" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption shore-creative-studio-title tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 2; max-width: auto; max-height: auto; white-space: nowrap;">
BIỆT ĐỘI KHỞI NGHIỆP</br>
các chiến binh công nghệ khởi nghiệp cùng bạn.
</div>
<!-- LAYER NR. 2 -->
<div class="moveState"><a href="#about-us">
<div class="moveState tp-caption shore-creative-studio-button tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="100"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 3; max-width: auto; max-height: auto; white-space: nowrap;">
HỌ LÀ AI?
</div></a></div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="images/creative/1.jpg" alt="creative-studio-2" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption shore-creative-studio-title tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 2; max-width: auto; max-height: auto; white-space: nowrap;">
TÔN CHỈ "3 WIN"</br>"Khách hàng" - "Chủ sản phẩm" - "Đội ngũ"
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption shore-creative-studio-button tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="100"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 3; max-width: auto; max-height: auto; white-space: nowrap;">
Tìm hiểu thêm...
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="images/creative/4.jpg" alt="creative-studio-2" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption shore-creative-studio-title tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 2; max-width: auto; max-height: auto; white-space: nowrap;">
TRỞ THÀNH CHIẾN BINH</br>Hãy code cho sự nghiệp của bạn với chúng tôi.
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption shore-creative-studio-button tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="100"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 3; max-width: auto; max-height: auto; white-space: nowrap;">
TÔI MUỐN TRỞ THÀNH CHIẾN BINH
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="images/creative/intro-1600.jpg" alt="creative-studio-2" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption shore-creative-studio-title tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 2; max-width: auto; max-height: auto; white-space: nowrap;">
Hãy đem ước mơ, đam mê của bạn thành hiện thực !</br>
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption shore-creative-studio-button tp-fade tp-resizeme"
data-x="center" data-hoffset="0"
data-y="center" data-voffset="100"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 3; max-width: auto; max-height: auto; white-space: nowrap;">
LIÊN HỆ
</div>
</li>
</ul>
<div class="tp-bannertimer"></div> </div>
<script type="text/javascript">
/******************************************
- PREPARE PLACEHOLDER FOR SLIDER -
******************************************/
var setREVStartSize = function() {
var tpopt = new Object();
tpopt.startwidth = 1180;
tpopt.startheight = 800;
tpopt.container = jQuery('#rev_slider_1_1');
tpopt.fullScreen = "on";
tpopt.forceFullWidth="on";
tpopt.container.closest(".rev_slider_wrapper").css({height:tpopt.container.height()});tpopt.width=parseInt(tpopt.container.width(),0);tpopt.height=parseInt(tpopt.container.height(),0);tpopt.bw=tpopt.width/tpopt.startwidth;tpopt.bh=tpopt.height/tpopt.startheight;if(tpopt.bh>tpopt.bw)tpopt.bh=tpopt.bw;if(tpopt.bh<tpopt.bw)tpopt.bw=tpopt.bh;if(tpopt.bw<tpopt.bh)tpopt.bh=tpopt.bw;if(tpopt.bh>1){tpopt.bw=1;tpopt.bh=1}if(tpopt.bw>1){tpopt.bw=1;tpopt.bh=1}tpopt.height=Math.round(tpopt.startheight*(tpopt.width/tpopt.startwidth));if(tpopt.height>tpopt.startheight&&tpopt.autoHeight!="on")tpopt.height=tpopt.startheight;if(tpopt.fullScreen=="on"){tpopt.height=tpopt.bw*tpopt.startheight;var cow=tpopt.container.parent().width();var coh=jQuery(window).height();if(tpopt.fullScreenOffsetContainer!=undefined){try{var offcontainers=tpopt.fullScreenOffsetContainer.split(",");jQuery.each(offcontainers,function(e,t){coh=coh-jQuery(t).outerHeight(true);if(coh<tpopt.minFullScreenHeight)coh=tpopt.minFullScreenHeight})}catch(e){}}tpopt.container.parent().height(coh);tpopt.container.height(coh);tpopt.container.closest(".rev_slider_wrapper").height(coh);tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height(coh);tpopt.container.css({height:"100%"});tpopt.height=coh;}else{tpopt.container.height(tpopt.height);tpopt.container.closest(".rev_slider_wrapper").height(tpopt.height);tpopt.container.closest(".forcefullwidth_wrapper_tp_banner").find(".tp-fullwidth-forcer").height(tpopt.height);}
};
/* CALL PLACEHOLDER */
setREVStartSize();
var tpj=jQuery;
tpj.noConflict();
var revapi1;
tpj(document).ready(function() {
if(tpj('#rev_slider_1_1').revolution == undefined)
revslider_showDoubleJqueryError('#rev_slider_1_1');
else
revapi1 = tpj('#rev_slider_1_1').show().revolution(
{
dottedOverlay:"none",
delay:9000,
startwidth:1180,
startheight:800,
hideThumbs:200,
thumbWidth:100,
thumbHeight:50,
thumbAmount:2,
simplifyAll:"off",
navigationType:"bullet",
navigationArrows:"solo",
navigationStyle:"round",
touchenabled:"on",
onHoverStop:"on",
nextSlideOnWindowFocus:"off",
swipe_threshold: 75,
swipe_min_touches: 1,
drag_block_vertical: false,
keyboardNavigation:"off",
navigationHAlign:"center",
navigationVAlign:"bottom",
navigationHOffset:0,
navigationVOffset:20,
soloArrowLeftHalign:"left",
soloArrowLeftValign:"center",
soloArrowLeftHOffset:20,
soloArrowLeftVOffset:0,
soloArrowRightHalign:"right",
soloArrowRightValign:"center",
soloArrowRightHOffset:20,
soloArrowRightVOffset:0,
shadow:0,
fullWidth:"off",
fullScreen:"on",
spinner:"spinner2",
stopLoop:"off",
stopAfterLoops:-1,
stopAtSlide:-1,
shuffle:"off",
forceFullWidth:"on",
fullScreenAlignForce:"off",
minFullScreenHeight:"",
hideThumbsOnMobile:"off",
hideNavDelayOnMobile:1500,
hideBulletsOnMobile:"off",
hideArrowsOnMobile:"off",
hideThumbsUnderResolution:0,
fullScreenOffsetContainer: "",
fullScreenOffset: "",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
startWithSlide:0 });
}); /*ready*/
</script>
<style type="text/css">
#rev_slider_1_1_wrapper .tp-loader.spinner2{ background-color: #c1996e !important; }
</style>
</div><!-- END REVOLUTION SLIDER --></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / Page with ID: 8 --> <!-- Page with ID: 12 -->
<div id="about-us" class="pagesection row dark_scheme" style="background-color:#1a1817!important; padding-top:100px!important; ">
<div class="col-md-12" >
<div class="container">
<div class="slideContent gu12">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h1 style="text-align: center;">CHÚNG TÔI LÀ AI?</h1>
</div>
</div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412594487477">
<div class="vc_col-sm-6 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h2>Về chúng tôi</h2>
</div>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>"Biệt đội khởi nghiệp" được xây dựng bởi các lập trình viên tài năng, đam mê công nghệ,
khát khao khởi nghiệp. Với mong muốn xây dựng các sản phẩm có giá trị cho
khách hàng và xã hội. Chúng tôi còn được gọi với cái tên rất thú vị "Các chiến binh Khởi nghiệp".</p>
<p></p>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-6 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h2>Giải pháp của chúng tôi</h2>
</div>
</div> <div class="hgr_progressbar ">
<div class="hgr-progb-icontext"><div class="hgr-progb-icon" style="width:18px; height:18px;">
<i class="icon outline outline-tv" style=" color:#ffffff; font-size:18px!important; line-height:18px!important; "></i></div><div class="hgr-progb-text"><h4 style="color:#ffffff;"> Social Networking, Ecommerce, Enterprise Solutions... </h4></div></div>
<div class="hgr_progressbarfull" style="height:4px; background-color: #000000;"><div class="hgr_progressbarfill " style="height: 4px; background-color: #4DD0E1;" data-value="95" data-time="3000"></div></div></div><div class="hgr_progressbar "><div class="hgr-progb-icontext"><div class="hgr-progb-icon" style="width:18px; height:18px;"><i class="icon outline outline-mobile-tv" style=" color:#ffffff; font-size:18px!important; line-height:18px!important; "></i></div>
<div class="hgr-progb-text"><h4 style="color:#ffffff;">Mobile App</h4></div></div><div class="hgr_progressbarfull" style="height:4px; background-color: #000000;"><div class="hgr_progressbarfill " style="height: 4px; background-color: #4DD0E1;" data-value="70" data-time="3000"></div></div></div><div class="hgr_progressbar "><div class="hgr-progb-icontext"><div class="hgr-progb-icon" style="width:18px; height:18px;"><i class="icon outline outline-speedometer" style=" color:#ffffff; font-size:18px!important; line-height:18px!important; "></i></div><div class="hgr-progb-text"><h4 style="color:#ffffff;">SEO</h4></div></div><div class="hgr_progressbarfull" style="height:4px; background-color: #000000;"><div class="hgr_progressbarfill " style="height: 4px; background-color: #4DD0E1;" data-value="85" data-time="3000"></div></div></div><div class="hgr_progressbar "><div class="hgr-progb-icontext"><div class="hgr-progb-icon" style="width:18px; height:18px;"><i class="icon outline outline-aim-target" style=" color:#ffffff; font-size:18px!important; line-height:18px!important; "></i></div><div class="hgr-progb-text"><h4 style="color:#ffffff;">Marketing</h4></div></div><div class="hgr_progressbarfull" style="height:4px; background-color: #000000;"><div class="hgr_progressbarfill " style="height: 4px; background-color: #4DD0E1;" data-value="75" data-time="3000"></div></div></div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412594989349">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_center">
<div class="wpb_wrapper">
<img width="1180" height="410" src="images/team-bg.jpg" class=" vc_box_border_grey attachment-full" alt="team-bg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / Page with ID: 12 --> <!-- Page with ID: 23 -->
<div id="services" class="pagesection row parallax light_scheme" style=" background-image:url('images/services-parallax.jpg'); padding-top:100px!important; padding-bottom:100px!important; ">
<div class="col-md-12" >
<div class="container">
<div class="slideContent gu12">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h1 style="text-align: center;">HOW IT WORKS</h1>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1412595262734">
<div class="wpb_wrapper">
<p style="text-align: center;">We’re a principal-driven studio. That means you work directly with us and that’s the way we like it. We’ve stockpiled plenty of awards on our<br />
shelves and tricks up our sleeves and we’ve done so by handling all of the ins and outs of projects big and small.</p>
</div>
</div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412595932954">
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-desk-lamp normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">WEB DESIGN</h4><p style="color:#212b31">Leggings normcore PBR bitters yr. Williamsburg Pinterest fixie small batch dreamcatcher Tonx. Kitsch locavore sriracha, tofu salvia fanny pack Tumblr. Gastropub beard bicycle rights.</p></div></div></div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-globe normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">SEO</h4><p style="color:#212b31">Banjo church-key Kickstarter cornhole, locavore cray banh mi blog irony Marfa kale chips twee keffiyeh. DIY jean shorts whatever pork belly messenger bag, authentic 3 wolf.</p></div></div></div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-rocket normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">BRANDING</h4><p style="color:#212b31">Shabby chic brunch Truffaut Austin mustache 3 wolf moon. Plaid pork belly next level Banksy, Kickstarter four loko 3 wolf moon wolf tattooed Brooklyn irony. Bitters leggings.</p></div></div></div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412595547107">
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-heart normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">SOCIAL MEDIA</h4><p style="color:#212b31">Neutra, bespoke pour-over retro iPhone. Gentrify bespoke art party Carles Austin swag, Brooklyn Shoreditch scenester Godard chillwave disrupt lomo Helvetica.</p></div></div></div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-shopping-basket normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">Ecommerce</h4><p style="color:#212b31">Crucifix sartorial 90's PBR&B hoodie small batch, pickled bitters McSweeney's. Raw denim aesthetic fashion axe, gastropub wayfarers Brooklyn.</p></div></div></div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="hgr-content-block " style="margin-bottom:2em;"><div class="hgr-contb-row"><div class="hgr-contblock-icon" style="color:#212b31; "><i class="icon icon outline outline-box-open normal-icon-cb" style=" font-size:30px!important; "></i></div><div class="hgr-content" style="padding-left:1em;"><h4 style="color:#212b31">Hosting</h4><p style="color:#212b31">McSweeney's hella post-ironic Helvetica shabby chic. Vinyl squid normcore ethical cliche VHS, swag jean shorts wolf biodiesel lo-fi cred Blue Bottle.</p></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / Page with ID: 23 --> <!-- Page with ID: 43 -->
<div class="row pagesection dark_scheme" id="portfolio">
<div class="col-md-12">
<div style="margin-left: -15px; margin-right: -15px; padding-top:100px!important; padding-bottom:0!important; background-color:#1a1817!important;">
<div class="slideContent gu12">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h1 style="text-align: center;">WHO WE’VE HELPED</h1>
</div>
</div>
<div class="wpb_text_column wpb_content_element vc_custom_1412600088436">
<div class="wpb_wrapper">
<p style="text-align: center;">From start-ups to global blue-chip brands, we’ve managed to help lots of lovely folks to make their mark.<br />
The thing they’ve all got in common? They’re all loved by the influencers we’ve worked with.</p>
</div>
</div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412600925018">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<style type="text/css">a.eg-henryharrison-element-1,a.eg-henryharrison-element-2{-webkit-transition:all .4s linear; -moz-transition:all .4s linear; -o-transition:all .4s linear; -ms-transition:all .4s linear; transition:all .4s linear}.eg-jimmy-carter-element-11 i:before{margin-left:0px; margin-right:0px}.eg-harding-element-17{letter-spacing:1px}.eg-harding-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; padding:30px 30px 0px 30px}.eg-harding-wrapper .esg-entry-media img{overflow:hidden; border-radius:50%; -webkit-border-radius:50%; -moz-border-radius:50%}.eg-ulysses-s-grant-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; padding:30px 30px 0px 30px}.eg-ulysses-s-grant-wrapper .esg-entry-media img{overflow:hidden; border-radius:50%; -webkit-border-radius:50%; -moz-border-radius:50%}.eg-richard-nixon-wrapper .esg-entry-media{overflow:hidden; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; padding:30px 30px 0px 30px}.eg-richard-nixon-wrapper .esg-entry-media img{overflow:hidden; border-radius:50%; -webkit-border-radius:50%; -moz-border-radius:50%}.eg-herbert-hoover-wrapper .esg-entry-media img{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); filter:gray; -webkit-filter:grayscale(100%)}.eg-herbert-hoover-wrapper:hover .esg-entry-media img{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale"); -webkit-filter:grayscale(0%)}.eg-lyndon-johnson-wrapper .esg-entry-media img{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); filter:gray; -webkit-filter:grayscale(100%)}.eg-lyndon-johnson-wrapper:hover .esg-entry-media img{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale"); -webkit-filter:grayscale(0%)}.esg-overlay.eg-ronald-reagan-container{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-georgebush-wrapper .esg-entry-cover{background:-moz-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(0,0,0,0)),color-stop(99%,rgba(0,0,0,0.83)),color-stop(100%,rgba(0,0,0,0.85))); background:-webkit-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-o-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:-ms-linear-gradient(top,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); background:linear-gradient(to bottom,rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#d9000000',GradientType=0 )}.eg-jefferson-wrapper{-webkit-border-radius:5px !important; -moz-border-radius:5px !important; border-radius:5px !important; -webkit-mask-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important}.eg-monroe-element-1{text-shadow:0px 1px 3px rgba(0,0,0,0.1)}.eg-lyndon-johnson-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-cover{background:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.35)),color-stop(96%,rgba(18,18,18,0)),color-stop(100%,rgba(19,19,19,0))); background:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); background:radial-gradient(ellipse at center,rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#59000000',endColorstr='#00131313',GradientType=1 )}.eg-wilbert-wrapper .esg-entry-media img{-webkit-transition:0.4s ease-in-out; -moz-transition:0.4s ease-in-out; -o-transition:0.4s ease-in-out; transition:0.4s ease-in-out; filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); filter:gray; -webkit-filter:grayscale(100%)}.eg-wilbert-wrapper:hover .esg-entry-media img{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale"); -webkit-filter:grayscale(0%)}.eg-phillie-element-3:after{content:" ";width:0px;height:0px;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;left:50%;margin-left:-5px; bottom:-5px; position:absolute}.eg-howardtaft-wrapper .esg-entry-media img,.eg-howardtaft-wrapper .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0,0 1 0 0 0,0 0 1 0 0,0 0 0 1 0'/></filter></svg>#grayscale"); -webkit-filter:grayscale(0%)}.eg-howardtaft-wrapper:hover .esg-entry-media img,.eg-howardtaft-wrapper:hover .esg-media-poster{filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); filter:gray; -webkit-filter:grayscale(100%)}.myportfolio-container .added_to_cart.wc-forward{font-family:"Open Sans"; font-size:13px; color:#fff; margin-top:10px}.esgbox-title.esgbox-title-outside-wrap{font-size:15px; font-weight:700; text-align:center}.esgbox-title.esgbox-title-inside-wrap{padding-bottom:10px; font-size:15px; font-weight:700; text-align:center}</style>
<!-- CACHE FOUND FOR: 1 --><style type="text/css">.minimal-light .navigationbuttons,.minimal-light .esg-pagination,.minimal-light .esg-filters{text-align:center}.minimal-light .esg-filterbutton,.minimal-light .esg-navigationbutton,.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton a{color:#999; margin-right:5px; cursor:pointer; padding:0px 16px; border:1px solid #e5e5e5; line-height:38px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; font-size:12px; font-weight:700; font-family:"Open Sans",sans-serif; display:inline-block; background:#fff; margin-bottom:5px}.minimal-light .esg-navigationbutton *{color:#999}.minimal-light .esg-navigationbutton{padding:0px 16px}.minimal-light .esg-pagination-button:last-child{margin-right:0}.minimal-light .esg-left,.minimal-light .esg-right{padding:0px 11px}.minimal-light .esg-sortbutton-wrapper,.minimal-light .esg-cartbutton-wrapper{display:inline-block}.minimal-light .esg-sortbutton-order,.minimal-light .esg-cartbutton-order{display:inline-block; vertical-align:top; border:1px solid #e5e5e5; width:40px; line-height:38px; border-radius:0px 5px 5px 0px; -moz-border-radius:0px 5px 5px 0px; -webkit-border-radius:0px 5px 5px 0px; font-size:12px; font-weight:700; color:#999; cursor:pointer; background:#fff}.minimal-light .esg-cartbutton{color:#333; cursor:default !important}.minimal-light .esg-cartbutton .esgicon-basket{color:#333; font-size:15px; line-height:15px; margin-right:10px}.minimal-light .esg-cartbutton-wrapper{cursor:default !important}.minimal-light .esg-sortbutton,.minimal-light .esg-cartbutton{display:inline-block; position:relative; cursor:pointer; margin-right:0px; border-right:none; border-radius:5px 0px 0px 5px; -moz-border-radius:5px 0px 0px 5px; -webkit-border-radius:5px 0px 0px 5px}.minimal-light .esg-navigationbutton:hover,.minimal-light .esg-filterbutton:hover,.minimal-light .esg-sortbutton:hover,.minimal-light .esg-sortbutton-order:hover,.minimal-light .esg-cartbutton a:hover,.minimal-light .esg-filterbutton.selected{background-color:#fff; border-color:#bbb; color:#333; box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-navigationbutton:hover *{color:#333}.minimal-light .esg-sortbutton-order.tp-desc:hover{border-color:#bbb; color:#333; box-shadow:0px -3px 5px 0px rgba(0,0,0,0.13) !important}.minimal-light .esg-filter-checked{padding:1px 3px; color:#cbcbcb; background:#cbcbcb; margin-left:7px; font-size:9px; font-weight:300; line-height:9px; vertical-align:middle}.minimal-light .esg-filterbutton.selected .esg-filter-checked,.minimal-light .esg-filterbutton:hover .esg-filter-checked{padding:1px 3px 1px 3px; color:#fff; background:#000; margin-left:7px; font-size:9px; font-weight:300; line-height:9px; vertical-align:middle}.minimal-light .esg-filterbutton{color:#999 !important}.minimal-light .esg-selected-filterbutton{border:1px solid #E5E5E5;background:#fff; padding:10px 20px 10px 30px; color:#999; border-radius:4px;font-weight:700}.minimal-light .esg-selected-filterbutton .eg-icon-down-open{margin-left:5px;font-size:12px; line-height:20px; vertical-align:top; color:#999}.minimal-light .esg-filter-wrapper .esg-filterbutton span i{color:#fff !important}.minimal-light .esg-filter-wrapper .esg-filterbutton:hover span,.minimal-light .esg-filter-wrapper .esg-filterbutton.selected span{color:#000 !important}.minimal-light .esg-filter-wrapper .esg-filterbutton:hover span i,.minimal-light .esg-filter-wrapper .esg-filterbutton.selected span i{color:#fff !important}.minimal-light .esg-selected-filterbutton:hover .eg-icon-down-open,.minimal-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{color:rgba(0,0,0,1) !important}.minimal-light .esg-cartbutton:hover,.minimal-light .esg-selected-filterbutton:hover,.minimal-light .esg-selected-filterbutton.hoveredfilter{border-color:#bbb; color:#333; box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-dropdown-wrapper{background:#fff; border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px; border:1px solid #bbb; box-shadow:0px 3px 5px 0px rgba(0,0,0,0.13)}.minimal-light .esg-dropdown-wrapper .esg-filterbutton{border:none !important;line-height:25px; white-space:nowrap; padding:0px 10px; font-weight:700; text-align:left; color:#999}.minimal-light .esg-dropdown-wrapper .esg-filterbutton:hover,.minimal-light .esg-dropdown-wrapper .esg-filterbutton.selected{background:transparent !important; color:#000 !important; box-shadow:none !important}.minimal-light .esg-dropdown-wrapper .esg-filter-checked{display:inline-block; margin-left:0px !important;margin-right:7px; margin-top:-2px !important; line-height:15px !important}.minimal-light .esg-dropdown-wrapper .esg-filter-checked span{vertical-align:middle; line-height:20px}</style>
<!-- ESSENTIAL GRID SKIN CSS -->
<style type="text/css">.eg-washington-element-0{font-size:16px !important; line-height:22px !important; color:#ffffff !important; font-weight:400 !important; padding:17px 17px 17px 17px !important; border-radius:60px 60px 60px 60px !important; background-color:rgba(255,255,255,0.15) !important; z-index:2 !important; display:block; font-family:"Open Sans" !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#ffffff !important; border-style:solid !important}.eg-washington-element-1{font-size:16px !important; line-height:22px !important; color:#ffffff !important; font-weight:400 !important; padding:17px 17px 17px 17px !important; border-radius:60px 60px 60px 60px !important; background-color:rgba(255,255,255,0.15) !important; z-index:2 !important; display:block; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#ffffff !important; border-style:solid !important}.eg-washington-element-3{font-size:13px; line-height:20px; color:#ffffff; font-weight:700; display:inline-block; float:none; text-align:center; clear:both; margin:15px 0px 0px 0px ; padding:5px 10px 5px 10px ; border-radius:0px 0px 0px 0px ; background-color:rgba(255,255,255,0.15); position:relative; z-index:2 !important; font-family:"Open Sans"; text-transform:uppercase}</style>
<style type="text/css">.eg-washington-element-0:hover{font-size:16px !important; line-height:22px !important; color:#ffffff !important; font-weight:400 !important; border-radius:60px 60px 60px 60px !important; background-color:rgba(0,0,0,0.5) !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#ffffff !important; border-style:solid !important}.eg-washington-element-1:hover{font-size:16px !important; line-height:22px !important; color:#ffffff !important; font-weight:400 !important; border-radius:60px 60px 60px 60px !important; background-color:rgba(0,0,0,0.5) !important; border-top-width:0px !important; border-right-width:0px !important; border-bottom-width:0px !important; border-left-width:0px !important; border-color:#ffffff !important; border-style:solid !important}</style>
<style type="text/css">.eg-washington-element-0-a{display:inline-block !important; float:none !important; text-align:center !important; clear:none !important; margin:0px 10px 0px 0px !important; position:relative !important}</style>
<style type="text/css">.eg-washington-element-1-a{display:inline-block !important; float:none !important; text-align:center !important; clear:none !important; margin:0px 10px 0px 0px !important; position:relative !important}</style>
<style type="text/css">.eg-washington-container{background-color:rgba(0,0,0,0.65)}</style>
<style type="text/css">.eg-washington-content{background-color:#ffffff; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:double; text-align:left}</style>
<style type="text/css">.esg-grid .mainul li.eg-washington-wrapper{background-color:#3f424a; padding:0px 0px 0px 0px; border-width:0px 0px 0px 0px; border-radius:0px 0px 0px 0px; border-color:transparent; border-style:none}</style>
<!-- ESSENTIAL GRID END SKIN CSS -->
<!-- ESSENTIAL GRID START META SKIN CSS -->
<!-- ESSENTIAL GRID END META SKIN CSS -->
<!-- THE ESSENTIAL GRID 1.5.2 -->
<!-- GRID WRAPPER FOR CONTAINER SIZING - HERE YOU CAN SET THE CONTAINER SIZE AND CONTAINER SKIN -->
<article class="myportfolio-container minimal-light">
<!-- THE GRID ITSELF WITH FILTERS, PAGINATION, SORTING ETC... -->
<div id="esg-grid-1-1" class="esg-grid" style="background-color: transparent;padding: 0px 0px 0px 0px ; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; display:none">
<!-- ############################ -->
<!-- THE GRID ITSELF WITH ENTRIES -->
<!-- ############################ -->
<ul>
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-interior-design eg-washington-wrapper" data-date="1393510309">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-6.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-160 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-160 esgbox" href="images/portfolio-creative-6.jpg" lgtitle="Refined Notions"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-160 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-160" href="http://bietdoikhoinghiep.com/portfolio/portfolio-three/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-160 eg-washington-element-3 esg-flipup" data-delay="0.1">Refined Notions</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-essential eg-washington-wrapper" data-date="1393510340">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-5.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-161 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-161 esgbox" href="images/portfolio-creative-5.jpg" lgtitle="Courage of Spirits"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-161 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-161" href="http://bietdoikhoinghiep.com/portfolio/courage-of-spirits/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-161 eg-washington-element-3 esg-flipup" data-delay="0.1">Courage of Spirits</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-essential filter-survival eg-washington-wrapper" data-date="1393510362">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-4.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-162 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-162 esgbox" href="images/portfolio-creative-4.jpg" lgtitle="The Bare Tale"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-162 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-162" href="http://bietdoikhoinghiep.com/portfolio/the-bare-tale/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-162 eg-washington-element-3 esg-flipup" data-delay="0.1">The Bare Tale</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-essential filter-fashion eg-washington-wrapper" data-date="1393510386">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-3.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-163 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-163 esgbox" href="images/portfolio-creative-3.jpg" lgtitle="Touch of Flame"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-163 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-163" href="http://bietdoikhoinghiep.com//portfolio/touch-of-flame/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-163 eg-washington-element-3 esg-flipup" data-delay="0.1">Touch of Flame</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-fashion filter-survival eg-washington-wrapper" data-date="1393510416">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-2.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-164 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-164 esgbox" href="images/portfolio-creative-2.jpg" lgtitle="The Healer's Wizard"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-164 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-164" href="http://bietdoikhoinghiep.com//portfolio/the-healers-wizard/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-164 eg-washington-element-3 esg-flipup" data-delay="0.1">The Healer's Wizard</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
<!-- PORTFOLIO ITEM 1 -->
<li class="filterall filter-essential filter-fashion eg-washington-wrapper" data-date="1393510435">
<!-- THE CONTAINER FOR THE MEDIA AND THE COVER EFFECTS -->
<div class="esg-media-cover-wrapper">
<!-- THE MEDIA OF THE ENTRY -->
<div class="esg-entry-media"><img src="images/portfolio-creative-1.jpg" alt=""></div>
<!-- THE CONTENT OF THE ENTRY -->
<div class="esg-entry-cover esg-fade" data-delay="0">
<!-- THE COLORED OVERLAY -->
<div class="esg-overlay esg-fade eg-washington-container" data-delay="0"></div>
<div class="esg-center eg-post-165 eg-washington-element-0-a esg-falldown" data-delay="0.1"><a class="eg-washington-element-0 eg-post-165 esgbox" href="images/portfolio-creative-1.jpg" lgtitle="Door of Windows"><i class="eg-icon-search"></i></a></div>
<div class="esg-center eg-post-165 eg-washington-element-1-a esg-falldown" data-delay="0.2"><a class="eg-washington-element-1 eg-post-165" href="http://bietdoikhoinghiep.com/portfolio/door-of-windows/" target="_self"><i class="eg-icon-link"></i></a></div>
<div class="esg-center eg-washington-element-8 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
<div class="esg-center eg-post-165 eg-washington-element-3 esg-flipup" data-delay="0.1">Door of Windows</div>
<div class="esg-center eg-washington-element-9 esg-none esg-clear" style="height: 5px; visibility: hidden;"></div>
</div><!-- END OF THE CONTENT IN THE ENTRY -->
</div><!-- END OF THE CONTAINER FOR THE MEDIA AND COVER/HOVER EFFECTS -->
</li><!-- END OF PORTFOLIO ITEM -->
</ul>
<!-- ############################ -->
<!-- END OF THE GRID -->
<!-- ############################ -->
</div><!-- END OF THE GRID -->
</article>
<!-- END OF THE GRID WRAPPER -->
<div class="clear"></div>
<script type="text/javascript">
var essapi_1;
jQuery(document).ready(function() {
essapi_1 = jQuery("#esg-grid-1-1").tpessential({
layout:"even",
forceFullWidth:"off",
lazyLoad:"off",
row:3,
loadMoreAjaxToken:"6899349bde",
loadMoreAjaxUrl:"http://bietdoikhoinghiep.com/admin/admin-ajax.php",
loadMoreAjaxAction:"Essential_Grid_Front_request_ajax",
ajaxContentTarget:"",
ajaxScrollToOffset:"0",
ajaxCloseButton:"off",
ajaxContentSliding:"on",
ajaxScrollToOnLoad:"on",
ajaxCallbackArgument:"on",
ajaxNavButton:"off",
ajaxCloseType:"button",
ajaxCloseInner:"false",
ajaxCloseStyle:"light",
ajaxClosePosition:"tr",
space:0,
pageAnimation:"fade",
paginationScrollToTop:"off",
spinner:"spinner2",
spinnerColor:"#c1996e",
evenGridMasonrySkinPusher:"off",
lightBoxMode:"single",
animSpeed:1000,
delayBasic:1,
mainhoverdelay:1,
filterType:"single",
filterGroupClass:"esg-fgc-1",
googleFonts:['Open+Sans:300,400,600,700,800','Raleway:100,200,300,400,500,600,700,800,900','Droid+Serif:400,700','Source+Sans+Pro:300,400'],
aspectratio:"21:6",
responsiveEntries: [
{ width:1400,amount:2},
{ width:1170,amount:2},
{ width:1024,amount:2},
{ width:960,amount:2},
{ width:778,amount:2},
{ width:640,amount:2},
{ width:480,amount:1}
]
});
try{
jQuery("#esg-grid-1-1 .esgbox").esgbox({
padding : [0,0,0,0],
afterLoad:function() {
if (this.element.hasClass("esgboxhtml5")) {
var mp = this.element.data("mp4"),
ogv = this.element.data("ogv"),
webm = this.element.data("webm");
this.content ='<div style="width:100%;height:100%;"><video autoplay="true" loop="" class="rowbgimage" poster="" width="100%" height="auto"><source src="'+mp+'" type="video/mp4"><source src="'+webm+'" type="video/webm"><source src="'+ogv+'" type="video/ogg"></video></div>';
jQuery(window).trigger("resize");
};
},
beforeShow : function () {
this.title = jQuery(this.element).attr('lgtitle');
if (this.title) {
this.title="";
this.title = '<div style="padding:0px 0px 0px 0px">'+this.title+'</div>';
}
},
afterShow : function() {
},
openEffect : 'fade',
closeEffect : 'fade',
nextEffect : 'fade',
prevEffect : 'fade',
openSpeed : 'normal',
closeSpeed : 'normal',
nextSpeed : 'normal',
prevSpeed : 'normal',
helpers : {
media : {},
title : {
type:""
}
}
});
} catch (e) {}
});
</script>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / Page with ID: 43 -->
<!-- Testimonials 2025 -->
<style>
.testimonial_text{
margin-bottom:60px;
}
</style>
<div id="testimonials" class="pagesection dark_scheme" style=" background-color:#1a1817!important; padding-top:100px!important; padding-bottom:100px!important; ">
<div class="row">
<div class="col-md-12">
<div class="container">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element vc_custom_1412601467939">
<div class="wpb_wrapper">
<h1 style="text-align: center;">100+ CLIENTS FROM ALL AROUND<br />
THE GLOBE</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- testimonials -->
<div class="row dark_scheme">
<div class="container">
<!-- Carousel
================================================== -->
<div id="testimonialsCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active ">
<div class="container">
<div class="testimonial_text"><h5 style="text-align: center;">Finally a really simple way to manage testimonials on your site. The results all exceeded expectations. They are true partners who have helped us conceptualize and realize our branding, UX and UI.</h5>
</div>
<div class="testimonialAuthor">
<div class="testimonial_image" style="background-image:url('images/team2-150x150.jpg');"></div>
<div class="testimonial_title"><span style="color:#00BCD4;">Tom Johansson</span><br>Attractor CEO</div>
</div>
</div>
</div>
<div class="item ">
<div class="container">
<div class="testimonial_text"><h5 style="text-align: center;">I searched all over and looked at many different company websites to decide which one to use and yours was by far the best. Finally a really simple way to manage testimonials on my website.</h5>
</div>
<div class="testimonialAuthor">
<div class="testimonial_image" style="background-image:url('images/team3-150x150.jpg');"></div>
<div class="testimonial_title"><span style="color:#00BCD4;">Matt Greene</span><br>Republic CEO</div>
</div>
</div>
</div>
<div class="item ">
<div class="container">
<div class="testimonial_text"><h5 style="text-align: center;">Finally a really simple way to manage testimonials on your site. I love it! I appreciate all your efforts. The results all exceeded expectations. Thanks for a quality product!</h5>
</div>
<div class="testimonialAuthor">
<div class="testimonial_image" style="background-image:url('images/team1-150x150.jpg');"></div>
<div class="testimonial_title"><span style="color:#00BCD4;">Sally Rosenberg</span><br>SouthCentral CEO</div>
</div>
</div>
</div>
</div>
<!--<a class="left carousel-control" href="#testimonialsCarousel" data-slide="prev"><span class="quote-left"></span></a> <a class="right carousel-control" href="#testimonialsCarousel" data-slide="next"><span class="quote-right"></span></a>-->
<div class="row" style="display: block; height: 30px;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#testimonialsCarousel" data-slide-to="0" class=" active "></li><li data-target="#testimonialsCarousel" data-slide-to="1" class=""></li><li data-target="#testimonialsCarousel" data-slide-to="2" class=""></li>
</ol>
</div>
</div>
<!-- /.carousel -->
</div>
</div>
<!--/ testimonials -->
</div>
<!--/ Testimonials 6 --> <!-- Page with ID: 2031 -->
<div id="contact" class="pagesection row parallax light_scheme" style=" background-image:url('images/contact-parallax.jpg'); padding-top:100px!important; padding-bottom:120px!important; ">
<div class="col-md-12" >
<div class="container">
<div class="slideContent gu12">
<div class="vc_row wpb_row vc_row-fluid">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h1 style="text-align: center;">GOT AN IDEA? LET’S CHAT!</h1>
</div>
</div>
</div>
</div>
</div><div class="vc_row wpb_row vc_row-fluid vc_custom_1412602126754">
<div class="vc_col-sm-12 wpb_column vc_column_container">
<div class="wpb_wrapper">
<script>
jQuery( document ).ready(function() {
//Add form size class
jQuery("#theForm").addClass("simform-large");
//Add form background color
jQuery("head").append("<style>.hgr-minimal-form .simform ol:before{background:#c1996e;}</style>");
var theForm = document.getElementById( "theForm" );