-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1454 lines (1420 loc) · 75 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>
<!-- Title of The Page -->
<title>Kyaw Soe Aung</title>
<!-- Meta Informations -->
<meta charset="utf-8">
<meta name="description" content="Kyaw Soe Aung Profile-Information">
<meta name="keywords" content="Kyaw Soe Aung Profile-Information">
<meta name="author" content="Kyaw Soe Aung">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Favicon -->
<link type="image/x-icon" rel="shortcut icon" href="assets/images/logo/favicon.png" />
<!-- Font CSS -->
<link type="text/css" rel="stylesheet" href="assets/fonts/font.css" />
<!-- Font-Awesome All CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/all.css" />
<!-- Bootstrap CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- Owlcarousel CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/owl.carousel.min.css" />
<!-- Fancybox CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/jquery.fancybox.min.css" />
<!-- Animate CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/animate.min.css" />
<!-- colors CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/colors.css" />
<!-- Styles CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/styles.css" />
<!-- Live Style Switcher - demo only -->
<link id="style-switch" href="assets/css/colors/orange.css" media="screen" rel="stylesheet" type="text/css">
<!-- Responsive CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/responsive.css" />
</head>
<body>
<!-- Body Part Start -->
<div class="gaspar" data-magic-cursor="show" data-color="crimson">
<!-- Pre-Loader Start-->
<div id="preloader">
<div class="loader_line"></div>
</div>
<!-- Pre-Loader end -->
<!-- Style switcher start -->
<!-- <div class="style-switch-wrapper">
<div class="style-switch-button">
<i class="fa fa-cog" aria-hidden="true"></i>
</div>
<h4>Unlimited Colors</h4>
<ul class="">
<li id="preset1" class=""><img
src="assets/images/colors/orange.png" alt="orange" /></li>
<li id="preset2" class=""><img
src="assets/images/colors/purple.png" alt="purple" /></li>
<li id="preset3" class=""><img
src="assets/images/colors/red.png" alt="red" /></li>
<li id="preset4" class=""><img
src="assets/images/colors/violet.png" alt="violet" /></li>
<li id="preset5" class=""><img
src="assets/images/colors/blue.png" alt="blue" /></li>
<li id="preset6" class=""><img
src="assets/images/colors/golden.png" alt="golden" /></li>
<li id="preset7" class=""><img
src="assets/images/colors/magenta.png" alt="magenta" /></li>
<li id="preset8" class=""><img
src="assets/images/colors/yellowgreen.png" alt="yellowgreen" /></li>
<li id="preset9" class=""><img
src="assets/images/colors/green.png" alt="green" /></li>
<li id="preset10" class=""><img
src="assets/images/colors/yellow.png" alt="yellow" /></li>
</ul>
<h4>Light Mode</h4>
<div class="switch" id="switcherrr">
<a href="../Light/index.html"><i class="fas fa-sun open"></i></a>
</div>
<h4 class="title">Magic Cursor</h4>
<ul class="cursor">
<li><a class="showme show" href="index.html#"></a></li>
<li><a class="hide" href="index.html#"><svg xmlns="http://www.w3.org/2000/svg" class="svg" id="Capa_1"
enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512"
>
<g>
<path d="m451.002 183.574h29.997v84.853h-29.997z"
transform="matrix(.707 -.707 .707 .707 -23.318 395.706)"></path>
<path d="m271.002 3.574h29.997v84.853h-29.997z"
transform="matrix(.707 -.707 .707 .707 51.241 215.706)"></path>
<path d="m423.574 31.002h84.853v29.997h-84.853z"
transform="matrix(.707 -.707 .707 .707 103.961 342.985)"></path>
<path
d="m42.422 512 150.458-150.458 42.114 125.464 152.988-362.988-362.988 152.988 125.464 42.114-150.458 150.458z">
</path>
<path d="m361 0h30v61h-30z"></path>
<path d="m451 121h61v30h-61z"></path>
</g>
</svg></a></li>
</ul>
<a target="_blank" href="https://themeforest.net/item/gaspar-personal-portfolio-html-template/36192601"
class="purchse-btn"><i class="fa fa-shopping-cart"></i> Purchase</a>
</div> -->
<!-- Header-section Start-->
<div class="header-holder services-section text-center animate__animated animate__zoomIn">
<div class="navigation">
<ul class="nav">
<li class="list active">
<a href="index.html#home" class="active">
<span class="icon">
<i class="fas fa-house-user"></i>
</span>
<div class="social__tooltip social__tooltip-bottom">Home</div>
</a>
</li>
<li class="list">
<a href="index.html#about">
<span class="icon">
<i class="fas fa-user-alt"></i>
</span>
<div class="social__tooltip social__tooltip-bottom">About</div>
</a>
</li>
<li class="list">
<a href="index.html#portfolio">
<span class="icon">
<i class="fas fa-image"></i>
</span>
<div class="social__tooltip social__tooltip-bottom">My Gallery</div>
</a>
</li>
<!-- <li class="list">
<a href="index.html#blog">
<span class="icon">
<i class="fas fa-blog"></i>
</span>
<div class="social__tooltip social__tooltip-bottom">Blog</div>
</a>
</li> -->
<li class="list">
<a href="index.html#contact">
<span class="icon">
<i class="fas fa-phone-alt"></i>
</span>
<div class="social__tooltip social__tooltip-bottom">Contact</div>
</a>
</li>
</ul>
</div>
</div>
<!-- Header-section End-->
<!-- section-part Start -->
<div class="container ">
<!-- Index-page Start -->
<section id="home" class="section active">
<div class="homecolor-box"></div>
<div class="common_bg animate__animated animate__zoomIn">
<div class="container m-auto">
<div class="row align-items-center">
<!-- Profile-Pic -->
<div class=" col-xl-5 col-lg-6 col-md-6 col-12">
<div class="home-profile animate__animated animate__fadeInLeft animate__delay-1s">
<img src="assets/images/profile/me.jpg" alt="home-profile">
</div>
</div>
<!-- Profile-Pic End-->
<!-- Profile-Information -->
<div class="col-xl-7 col-lg-6 col-md-6 col-12">
<div class="home-content">
<P class="common-desctiption animate__animated animate__fadeInDown animate__delay-1s">Get to know me
</P>
<h1 class="common-title animate__animated animate__fadeInDown animate__delay-1s">Kyaw Soe Aung</h1>
<div class="animated-bar animate__animated animate__fadeInDown animate__delay-2s"></div>
<div class="animated-text animate__animated animate__fadeInDown animate__delay-2s">
<h3>Software Engineer</h3>
<!-- <h3>Entrepreneur</h3>
<h3>Director</h3> -->
</div>
<!-- Social media icons-->
<div class="fixed-block animate__animated animate__jackInTheBox animate__delay-2-5s">
<ul class="list-unstyled social-icons">
<!-- <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> -->
<li><a href="https://www.facebook.com/kyaw.soeaung.1485/"><i class="fab fa-facebook-square "></i></a></li>
<li><a href="https://www.linkedin.com/in/kyaw-soe-aung-31305a15b/"><i class="fab fa-linkedin "></i></a></li>
<li><a href="https://github.com/kyaw-soe-aung"><i class="fab fa-github-square "></i></a></li>
<li><a href="https://www.instagram.com/kyawsoeaung1434/"><i class="fab fa-instagram-square"></i></a></li>
</ul>
</div>
<p class="lorem-text animate__animated animate__zoomIn animate__delay-2-5s">
Meet Kyaw Soe Aung, a Software Engineer and proud graduate of the University of Computer Studies Yangon. With a passion for technology and innovation, has channeled their expertise into founding and leading the dynamic company, Burmazon. Director of The Best Green Land Company Limited (Construction).
</p>
<div class="home-btn">
<a href="index.html#about" data-section-index="1" class="clickbtn about-us animate__animated animate__fadeInTopRight animate__delay-3s">about me </a>
<a href="index.html#contact" data-section-index="1" class="clickbtn hire-me animate__animated animate__fadeInTopLeft animate__delay-3s ">Contace me</a>
</div>
</div>
</div>
<!-- Profile-Information End -->
</div>
</div>
</div>
</section>
<!-- Index-page End -->
<!-- About Section Start -->
<section id="about" class="section ">
<div class="homecolor-box"></div>
<div class="common_bg animate__animated animate__fadeInDown">
<div class="container">
<div class="about-content">
<!-- About Title Start-->
<div class="row ">
<div class="col-12 ">
<div class="section-title animate__animated animate__fadeInDown animate__delay-1s">
<P class="common-desctiption">my intro</P>
<h1 class="common-title">About <span>Me</span></h1>
<div class="animated-bar"></div>
</div>
</div>
</div>
<!-- About Title End -->
<!-- About-Me -->
<div class="row single-section">
<div class="col-lg-4 profile-photo animate__animated animate__fadeInLeft animate__delay-2s ">
<div class="row">
<div class="col-12 d-block col-sm-none">
<img src="assets/images/profile/me.jpg" class="img-fluid main-img-mobile" alt="my picture">
</div>
</div>
</div>
<div class="col-lg-8 col-sm-12">
<div class="row personal-info animate__animated animate__fadeInRight animate__delay-2s">
<div class="col-12">
<h5 class="personal-title">who am <span>i ?</span></h5>
<h3 class="personal-title">I'm Kyaw Soe Aung, a <span>Software Engineer</span> and <span>an
Entrepreneur</span></h3>
<div class="col-12">
<p class="info">
To leverage my experience in software engineering and business management to contribute to a dynamic organization that values innovation and creativity.
</p>
<!-- <p class="info">
As a computer science graduate with a strong background in software engineering and a passion for entrepreneurship, I am eager to start my own company in the fashion industry. With over five years of experience in the web development industry and a proven track record as a director at The Best Green Land Company Limited, I have the technical expertise and leadership skills necessary to succeed in this new venture. My company, Buramzon, will focus on providing high-quality fashion accessories to customers.
</p> -->
<p>About me:</p>
<!-- <p>Director, The Best Green Land Company Limited (2018-Present)</p> -->
<p>
<ul class="info">
<li class="text-white"> 5+ years of experience in the IT field as a software engineer.</li>
<li class="text-white"> Currently serving as a Director of The Best Green Land Company Limited (Management and Finance), a construction company specializing in eco-friendly building solutions.</li>
<li class="text-white"> Founder of Buramzon, a startup company that sells fashion accessories and showcases unique, sustainable designs.</li>
</ul>
</p>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-12">
<h3 class="personal-infotitle">personal <span>informations</span></h3>
</div>
<div class="col-lg-6">
<ul class="about-you ">
<li>
<span class="title">Name :</span>
<span class="value">Kyaw Soe Aung</span>
</li>
<!-- <li>
<span class="title">last name :</span>
<span class="value">Smith</span>
</li> -->
<li>
<span class="title">address :</span>
<span class="value"> Yangon</span>
</li>
<li>
<span class="title">Nationality :</span>
<span class="value">Myanmar</span>
</li>
<!-- <li>
<span class="title">Age :</span>
<span class="value">24 years</span>
</li> -->
</ul>
</div>
<div class="col-lg-6">
<ul class="about-you ">
<li>
<span class="title">E-mail :</span>
<span class="value"><a href="mailto:[email protected]">[email protected]</a></span>
</li>
<li>
<span class="title">Phone :</span>
<span class="value"><a href="tel:+95 9967696966">+95 9967696966</a></span>
</li>
<!-- <li>
<span class="title">skype :</span>
<span class="value">steve.milner</span>
</li> -->
<li>
<span class="title">Langages :</span>
<span class="value">English, Burmese</span>
</li>
<!-- <li>
<span class="title">Freelance :</span>
<span class="value"> Available</span>
</li> -->
</ul>
</div>
<div class="col-lg-12">
<div class="About-btn">
<!-- <button id="b1" class="clickbtn download-cv">Download CV <i class="fa fa-download"
aria-hidden="true"></i></button> -->
<!-- Social media icons-->
<div class="col-lg-7 col-sm-6 col-12">
<ul class="list-unstyled social-icons">
<!-- <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> -->
<li><a href="https://www.facebook.com/kyaw.soeaung.1485"><i class="fab fa-facebook-square"></i></a></li>
<li><a href="https://www.linkedin.com/in/kyaw-soe-aung-31305a15b/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/kyaw-soe-aung"><i class="fab fa-github-square"></i></a></li>
<li><a href="https://www.instagram.com/kyawsoeaung1434/"><i class="fab fa-instagram-square"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About-Me End -->
<!-- Resume section Start -->
<div class="resume-section ">
<!-- Resume title-->
<div class="row">
<div class="col-12">
<div class="section-title animate__animated animate__fadeInUp animate__delay-3s">
<P class="common-desctiption">Check out my Resume</P>
<h1 class="common-title ">my <span>Resume</span></h1>
<div class="animated-bar "></div>
</div>
</div>
</div>
<!-- Resume title End-->
<!-- Resume Content -->
<div class="row">
<!-- Education part-->
<div class="col-md-6 col-12 ">
<div class=" col-block education ">
<h3 class="about-subtitle">Education</h3>
<div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">BACHELOR DEGREE - UNIVERSITY OF COMPUTER STUDIES YANGON</h5><span
class="item-details">UNIVERSITY OF COMPUTER STUDIES YANGON</> 2015 - 2023</span>
<p class="item-description">During the Study at the University of Computer Studies Yangon (UCSY), I had the opportunity to develope deep into the field of Computer Science and expand my knowledge and skills in this field.</p>
</div>
<!-- <div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">Master of Science in Information Technology</h5><span
class="item-details">Cambridge University / 2007 - 2009</span>
<p class="item-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio quo
repudiandae.</p>
</div> -->
<!-- <div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">Diploma In Web Design</h5><span class="item-details">Cambridge University
/
2009 - 2010</span>
<p class="item-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio quo
repudiandae.</p>
</div> -->
</div>
</div>
<!-- Experience part-->
<div class="col-md-6 col-12 ">
<div class=" col-block education">
<h3 class="about-subtitle">Experience</h3>
<div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">Web Developer</h5><span class="item-details">Myanmar Digital Solutions / 2018 -
2022</span>
<p class="item-description">Working as a web developer at the start-up software company Myanmar Digital Solutions(MMDS) has been a challenging and rewarding experience. MMDS is a dynamic and fast-paced company that is constantly pushing the boundaries of technology and innovation, and I feel privileged to be a part of this exciting journey.</p>
</div>
<!-- <div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">Senior Ui/Ux Designer</h5><span class="item-details">Adobe / 2013 -
2016</span>
<p class="item-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio quo
repudiandae.</p>
</div> -->
<!-- <div class="resume-item"><span class="item-arrow"></span>
<h5 class="item-title">Junior Ui/Ux Designer</h5><span class="item-details">Google / 2011 -
2013</span>
<p class="item-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio quo
repudiandae.</p>
</div> -->
</div>
</div>
</div>
<!-- Resume ContentEnd -->
</div>
<!-- / Resume section End-->
<!-- Skill Bar Section -->
<!-- <div class="skill-section">
<div class="row">
<div class="col-12 ">
<div class="section-title animate__animated animate__fadeInUp animate__delay-3s">
<P class="common-desctiption">My level of knowledge in some tools</P>
<h1 class="common-title">my <span>skills</span></h1>
<div class="animated-bar"></div>
</div>
</div>
<div class="col-lg-6 col-md-12 ">
<h3 class="about-subtitle">Design <span>Skills</span></h3>
<div class="skill-bars">
<div class="bar">
<div class="info">
<span>Photoshop</span>
</div>
<div class="progress-line Photoshop">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>Illustrator</span>
</div>
<div class="progress-line Illustrator">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>Figma</span>
</div>
<div class="progress-line Figma">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>Indesign</span>
</div>
<div class="progress-line Indesign">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>Sketch</span>
</div>
<div class="progress-line Sketch">
<span></span>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 ">
<h3 class="about-subtitle">Coding <span>Skills</span></h3>
<div class="skill-bars">
<div class="bar">
<div class="info">
<span>HTML</span>
</div>
<div class="progress-line html">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>CSS</span>
</div>
<div class="progress-line css">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>jQuery</span>
</div>
<div class="progress-line jquery">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>Python</span>
</div>
<div class="progress-line python">
<span></span>
</div>
</div>
<div class="bar">
<div class="info">
<span>MySQL</span>
</div>
<div class="progress-line mysql">
<span></span>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- / Skill Bar Section -->
<!-- service section -->
<div class="services-section text-center ">
<!-- <div class="row ">
<div class="col-12">
<div class="section-title animate__animated animate__fadeInUp animate__slower animate__delay-3s ">
<P class="common-desctiption">Services i offer to my clients</P>
<h1 class="common-title">My <span>Services</span></h1>
<div class="animated-bar"></div>
</div>
<p class="service-text">Lorem Ipsum is simply dummy text of the printing and type setting industry.
Lorem Ipsum has been the industry's<br>standard dummy text ever since the 1500s, when an unknown
book.
</p>
</div>
</div> -->
<div class="row animate__animated animate__zoomIn animate__slower animate__delay-3s">
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-laptop-code"></i>
<h4><span class="service-line">web design</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-palette"></i>
<h4><span class="service-line">design</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-object-ungroup"></i>
<h4><span class="service-line">product design</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="far fa-object-ungroup"></i>
<h4><span class="service-line">UI/UX design</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-radiation"></i>
<h4><span class="service-line">animation</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-code"></i>
<h4><span class="service-line">web devolopment</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-arrows-alt"></i>
<h4><span class="service-line">fully responsive</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
<!-- Single Item -->
<!-- <div
class="col-lg-3 col-sm-6 services-box animate__animated animate__zoomIn animate__slower animate__delay-3s">
<div class="service-item">
<i class="fas fa-dharmachakra"></i>
<h4><span class="service-line">management</span></h4>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div> -->
<!-- End Single Item -->
</div>
</div>
<!-- / service section -->
<!-- Testimonials -->
<!-- <div class="row">
<div class="col-12 animate__animated animate__fadeInDown animate__delay-3s">
<div class="section-title">
<P class="common-desctiption">what our clients say</P>
<h1 class="common-title">My<span>Testimonial</span></h1>
<div class="animated-bar"></div>
</div>
</div>
</div> -->
<!-- <div class="row">
<div id="testimonial" class="owl-carousel owl-theme">
<div class="item">
<div class="testimonial-item">
<div class="quote">
<i class="fas fa-quote-left"></i>
</div>
<div class="testimonial-img">
<img src="assets/images/profile/glitch.jpg" alt="">
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta consequatur,
optio dolores aliquid </p>
<div class="rating">
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="quote">
<i class="fas fa-quote-left"></i>
</div>
<div class="testimonial-img">
<img src="assets/images/profile/partical.jpg" alt="">
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta consequatur,
optio dolores aliquid </p>
<div class="rating">
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="quote">
<i class="fas fa-quote-left"></i>
</div>
<div class="testimonial-img">
<img src="assets/images/profile/me.jpg" alt="">
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta consequatur,
optio dolores aliquid </p>
<div class="rating">
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="quote">
<i class="fas fa-quote-left"></i>
</div>
<div class="testimonial-img">
<img src="assets/images/profile/water.jpg" alt="">
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta consequatur,
optio dolores aliquid </p>
<div class="rating">
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-item">
<div class="quote">
<i class="fas fa-quote-left"></i>
</div>
<div class="testimonial-img">
<img src="assets/images/profile/wrap.jpg" alt="">
</div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta consequatur,
optio dolores aliquid </p>
<div class="rating">
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
<i class="fas fa-3x fa-star"></i>
</div>
</div>
</div>
</div>
</div> -->
<!--End Testimonials section -->
<!-- Fun Fact Section -->
<!-- <div class="funfacts-section">
<div class="row">
<div class="col-12">
<div class="section-title">
<P class="common-desctiption">This are my strongest sides</P>
<h1 class="common-title">fun <span>facts</span></h1>
<div class="animated-bar"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="funfacts-box">
<h3 class="counter" data-to="10" data-time="10000">0</h3>
<p class="fun-text">years of <span>experience</span></p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="funfacts-box">
<h3 class="counter" data-to="499" data-time="100000">0</h3>
<p class="fun-text">happy Clients</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="funfacts-box">
<h3 class="counter" data-to="101" data-time="100000">0</h3>
<p class="fun-text">completed projects</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="funfacts-box">
<h3 class="counter" data-to="20" data-time="10000">0</h3>
<p class="fun-text">awards win</p>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Protfolio Section Start-->
<section id="portfolio" class="section">
<div class="homecolor-box"></div>
<div class="common_bg animate__animated animate__fadeInLeft">
<div class="container">
<div class="protfolio-section text-center ">
<!-- Protfolio-Title Start -->
<div class="row">
<div class="col-12">
<div class="section-title animate__animated animate__fadeInDown animate__delay-1s">
<P class="common-desctiption">Some of Best Memory</P>
<h1 class="common-title">My <span>Gallery</span></h1>
<div class="animated-bar"></div>
</div>
</div>
</div>
<!-- Protfolio-Title Start -->
<!-- Protfolio nav-button start -->
<div class="row">
<div class="col-lg-12">
<div class="portfolio-menu animate__animated animate__fadeInUp animate__delay-2s">
<nav class="controls ">
<button type="button" class="control clickbtn" data-filter="all">All</button>
<!-- <button type="button" class="control clickbtn" data-filter=".webdevelopment ">Work</button> -->
<button type="button" class="control clickbtn" data-filter=".with_friends ">With Friends</button>
<button type="button" class="control clickbtn" data-filter=".trips ">Vacations</button>
<!-- <button type="button" class="control clickbtn" data-filter=".uiuxdesign">Moods</button> -->
</nav>
</div>
</div>
</div>
<!-- Protfolio nav-button End -->
<!-- Portfolio Mix Content Start -->
<div class="row portfolio-list animate__zoomIn animate__animated animate__delay-3s">
<div class="container">
<ul class="row ps-0">
<!-- Mix Content-Box -->
<li class="mix webdevelopment col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img11.jpg"
data-caption="Web Development" data-size="1200x600">
<img src="assets/images/with-friends/img11.jpg" alt="Image description" />
<div class="info">
<h3 class="title">YANGON</h3>
</div>
</a>
</li>
<li class="mix webdevelopment col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img15.jpg"
data-caption="Web Development" data-size="1200x600">
<img src="assets/images/with-friends/img15.jpg" alt="Image description" />
<div class="info">
<h3 class="title">YANGON</h3>
</div>
</a>
</li>
<!-- Mix Content-Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/p1.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/p1.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Malaysia</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/p2.jpg" data-caption="UI-UX Design"
data-size="1200x600">
<img src="assets/images/with-friends/p2.jpg" alt="Image description" />
<div class="info">
<!-- <h3 class="title">UI-UX Design</h3> -->
<span class="post">Malaysia</span>
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/p3.jpg"
data-caption="Web Development" data-size="1200x600">
<img src="assets/images/with-friends/p3.jpg" alt="Image description" />
<div class="info">
<!-- <h3 class="title">Web Develoment</h3> -->
<span class="post">Malaysia</span>
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/p4.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/p4.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Malaysia</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img1.JPG" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img1.JPG" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/nwtw.jpeg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/nwtw.jpeg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/nwtw2.jpeg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/nwtw2.jpeg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img2.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img2.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img3.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img3.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img4.JPG" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img4.JPG" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img5.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img5.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img6.jpeg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img6.jpeg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img7.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img7.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img8.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img8.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>
</a>
</li>
<!-- Mix Content Box -->
<li class="mix with_friends col-xl-3 col-lg-4 col-md-6">
<a title="click to zoom-in" href="assets/images/with-friends/img9.jpg" data-caption="Web Design"
data-size="1200x600">
<img src="assets/images/with-friends/img9.jpg" alt="Image description" />
<div class="info">
<h3 class="title">Yangon</h3>
<!-- <span class="post">project</span> -->
</div>