-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
969 lines (832 loc) · 30.1 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
<!doctype html>
<html lang="en-US">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="Rebin Aziz Portfolio" />
<meta name="keywords" content="rebinApps, app developer, startup, kurdistan, ios developer, cv, android developer, rebin portfolio,
Iraq startup, iraq app developer, Native developer, " />
<meta name="author" content="Rebin Aziz" />
<!-- Title -->
<title>Rebin Aziz | Recore</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap&subset=cyrillic" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="css/basic.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/jarallax.css" />
<link rel="stylesheet" href="css/swiper.css" />
<link rel="stylesheet" href="css/fontawesome.css" />
<link rel="stylesheet" href="css/brands.css" />
<link rel="stylesheet" href="css/solid.css" />
<!-- Theme Colors
<link rel="stylesheet" href="css/theme-colors/blue.css" />
<link rel="stylesheet" href="css/theme-colors/green.css" />
<link rel="stylesheet" href="css/theme-colors/orange.css" />
<link rel="stylesheet" href="css/theme-colors/brown.css" />
<link rel="stylesheet" href="css/theme-colors/purple.css" />
<link rel="stylesheet" href="css/theme-colors/red.css" />
<link rel="stylesheet" href="css/theme-colors/beige.css" />
<link rel="stylesheet" href="css/theme-colors/green_light.css" />
<link rel="stylesheet" href="css/theme-colors/yellow.css" />
<link rel="stylesheet" href="css/theme-colors/yellow_light.css" />
-->
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/favicons/favicon.ico">
</head>
<body class="home">
<!-- Preloader -->
<div class="preloader">
<div class="centrize full-width">
<div class="vertical-center">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
</div>
<!-- Container -->
<div class="container">
<!-- Cursor -->
<div class="cursor-follower"></div>
<!-- Header -->
<header class="header">
<div class="head-top">
<!-- menu button -->
<a href="#" class="menu-btn"><span></span></a>
<!-- logo -->
<div class="logo hover-masks-logo">
<a href="https://drive.google.com/file/d/1a1_zEyt5Yg7QPgd1cLys4e0LKxreRzKs/view?usp=sharing">
<span class="mask-lnk">Rebin <strong>Aziz</strong></span>
<span class="mask-lnk mask-lnk-hover">Download <strong>CV</strong></span>
</a>
</div>
<!-- top menu -->
<div class="top-menu hover-masks">
<div class="top-menu-nav">
<div class="menu-topmenu-container">
<ul class="menu">
<li class="menu-item current-menu-item">
<a href="#section-started">Home</a>
</li>
<li class="menu-item">
<a href="#section-about">Resume</a>
</li>
<li class="menu-item">
<a href="#section-portfolio">Works</a>
</li>
<li class="menu-item">
<a href="#section-contacts">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- Wrapper -->
<div class="wrapper">
<!-- Section Started -->
<div class="section started" id="section-started">
<!-- started content -->
<div class="centrize full-width">
<div class="vertical-center">
<div class="started-content">
<h1 class="h-title">
Hello, I’m <strong>Rebin Aziz</strong>, App developer and<br />
UI/UX Designer based in kurdistan.
</h1>
<div class="h-subtitle typing-subtitle">
<p>I code cool <strong>websites</strong></p>
<p>I develop <strong>mobile apps</strong></p>
<p>I create <strong>startups</strong></p>
</div>
<span class="typed-subtitle"></span>
</div>
</div>
</div>
<!-- mosue button -->
<a href="#" class="mouse_btn" style="display: none;"><span class="icon fas fa-chevron-down"></span></a>
</div>
<!-- Section About -->
<div class="section about" id="section-about">
<!-- title -->
<div class="title">
<div class="title_inner">About</div>
</div>
<div class="content content-box">
<!-- image -->
<div class="image">
<img src="images/cv_image.jpg" alt="" />
</div>
<!-- desc -->
<div class="desc">
<p>Experienced Mobile developer using native technology & with a demonstrated history of working in mobile and computer software industry. Skilled in Native development with Android using Android Studio and IOS using Xcode, using tools like Lottie Animation to create stunning animation and adobe XD to prototype beautiful UI. Strong engineering profile with a Bachelors degree focused in Computer Software Engineering from Tishik Internationl University-Erbil. .</p>
<div class="info-list">
<ul>
<li><strong>Age:</strong> 22</li>
<li><strong>Residence:</strong> Iraq</li>
<li><strong>Freelance:</strong> Available</li>
<li><strong>Address:</strong> kurdistan region</li>
<li><strong>Phone:</strong> <a href="tel: +9647708150017">+964 770 815 0017</a></li>
<li><strong>E-mail:</strong> [email protected]</li>
</ul>
</div>
<div class="bts">
<a href="https://drive.google.com/file/d/1a1_zEyt5Yg7QPgd1cLys4e0LKxreRzKs/view?usp=sharing" class="btn hover-animated">
<span class="circle"></span>
<span class="lnk">Download CV</span>
</a>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<!-- Section Service -->
<div class="section service" id="section-services">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Services</div>
</div>
<!-- service items -->
<div class="service-items">
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-brain"></span></div>
<div class="name">Project Management</div>
<div class="text">Managing project with modern tool and technalogy and taking a business from 0 to 100 with the promise
of both client satsfaction and company employees happiness.</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fab fa-android"></span></div>
<div class="name">Android development</div>
<div class="text">Developing high quality Android application with native technalogy to ensure maximum perfomance and scalablity</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fab fa-apple"></span></div>
<div class="name">IOS Development</div>
<div class="text">Developing high quality IOS application with native technalogy to ensure maximum perfomance and scalablity</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-business-time"></span></div>
<div class="name">Business development</div>
<div class="text">Researching tech business and developing its services to create a successful product, or modernizing your current
business with the power of modern technology to help you work efficiently and reach all your potentail customer to maximize your revenue
and create a happy customer experience
</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-pen-fancy"></span></div>
<div class="name">UI/UX Design</div>
<div class="text">Designing beautiful UI with the best UX and taking everything from concept to prototype phase.</div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<!-- Section Resume -->
<div class="section resume" id="section-history">
<div class="content">
<div class="cols">
<div class="col col-md">
<!-- title -->
<div class="title">
<div class="title_inner">Experience</div>
</div>
<!-- resume items -->
<div class="resume-items">
<div class="resume-item content-box active">
<div class="date">2021 - present</div>
<div class="name">Account manager - Lucid Source.</div>
<div class="text">Collaborate with both client and the team to create cool products and services, gathering requirments and helping the client to create
a successful product.</div>
</div>
<div class="resume-item content-box">
<div class="date">2020 - 2021</div>
<div class="name">Project Manager - Dr Online.</div>
<div class="text">Early member in Dr Online, and one of the main building block at the early days.
taking the startup from concept to real world product with all the research and overseeing of every step.</div>
</div>
<div class="resume-item content-box">
<div class="date">2020 - mid 2020</div>
<div class="name">App developer - Ster Group</div>
<div class="text">Developing internal mobile application for the company for both android and IOS using native technology with custom backend using PHP.</div>
</div>
<div class="resume-item content-box">
<div class="date">2019 - 2020</div>
<div class="name">NOC Officer - Yana for banking service.</div>
<div class="text">Monitoring and maintaining internal banking system and configuering internal system with some basic networking.</div>
</div>
</div>
</div>
<div class="col col-md">
<!-- title -->
<div class="title">
<div class="title_inner">Education</div>
</div>
<!-- resume items -->
<div class="resume-items">
<div class="resume-item content-box">
<div class="date">2017 - 2021</div>
<div class="name">Tishik International University - Erbil Iraq</div>
<div class="text">Bachelors Degree in Computer Engineering.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Section Design Skills -->
<div class="section skills" id="section-skills">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Personal Skills</div>
</div>
<!-- skills items -->
<div class="skills percent content-box">
<ul>
<li>
<div class="name">UI/UX Design</div>
<div class="progress ">
<div class="percentage" style="width: 90%;">
<span class="percent">90%</span>
</div>
</div>
</li>
<li>
<div class="name">Android Development</div>
<div class="progress ">
<div class="percentage" style="width: 90%;">
<span class="percent">90%</span>
</div>
</div>
</li>
<li>
<div class="name">IOS Development</div>
<div class="progress ">
<div class="percentage" style="width: 70%;">
<span class="percent">70%</span>
</div>
</div>
</li>
<li>
<div class="name">Project Management</div>
<div class="progress ">
<div class="percentage" style="width: 95%;">
<span class="percent">95%</span>
</div>
</div>
</li>
<li>
<div class="name">Business development</div>
<div class="progress ">
<div class="percentage" style="width: 75%;">
<span class="percent">75%</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Section Languages Skills -->
<div class="section skills" id="section-skills-lang">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Languages Skills</div>
</div>
<!-- skills items -->
<div class="skills dotted content-box">
<ul>
<li>
<div class="name">English</div>
<div class="progress">
<div class="percentage" style="width: 90%;">
<span class="percent">90%</span>
</div>
</div>
</li>
<li>
<div class="name">Arabic</div>
<div class="progress">
<div class="percentage" style="width: 85%;">
<span class="percent">85%</span>
</div>
</div>
</li>
<li>
<div class="name">Kurdish</div>
<div class="progress">
<div class="percentage" style="width: 100%;">
<span class="percent">100%</span>
</div>
</div>
</li>
<li>
<div class="name">japanese</div>
<div class="progress">
<div class="percentage" style="width: 30%;">
<span class="percent">30%</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Section Coding Skills -->
<div class="section skills" id="section-skills-code">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Coding Skills</div>
</div>
<!-- skills items -->
<div class="skills circles content-box">
<ul>
<li>
<div class="name">Java</div>
<div class="progress p90"> <!-- p90 = 90% circle fill color -->
<div class="percentage">
<span class="percent">90%</span>
</div>
<span>90%</span>
</div>
</li>
<li>
<div class="name">Swift</div>
<div class="progress p75"> <!-- p75 = 75% circle fill color -->
<div class="percentage">
<span class="percent">75%</span>
</div>
<span>75%</span>
</div>
</li>
<li>
<div class="name">PHP</div>
<div class="progress p60"> <!-- p75 = 75% circle fill color -->
<div class="percentage">
<span class="percent">60%</span>
</div>
<span>60%</span>
</div>
</li>
<li>
<div class="name">HTML / CSS</div>
<div class="progress p95"> <!-- p95 = 95% circle fill color -->
<div class="percentage">
<span class="percent">95%</span>
</div>
<span>95%</span>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Section Knowladge Skills -->
<div class="section skills" id="section-skills-know">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Knowledge</div>
</div>
<!-- skills -->
<div class="skills list content-box">
<ul>
<li>
<div class="name">Android Apps Development</div>
</li>
<li>
<div class="name">iOS Apps Development</div>
</li>
<li>
<div class="name">Web Design</div>
</li>
<li>
<div class="name">UI/UX Design thinking</div>
</li>
<li>
<div class="name">Website Hosting</div>
</li>
<li>
<div class="name">Cpanel/Gsuit/Outlook Email Setup</div>
</li>
<li>
<div class="name">Team management with Jira/trello/asana</div>
</li>
<li>
<div class="name">Project Coordination</div>
</li>
<li>
<div class="name">Business Consultation</div>
</li>
<li>
<div class="name">Startup Consultation</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Section Interests -->
<div class="section service" id="section-interests">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Interests</div>
</div>
<!-- interests items -->
<div class="service-items">
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-gamepad"></span></div>
<div class="name">Gaming</div>
<!-- <div class="text">I love to play all type of games especially story games.</div> -->
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fab fa-bitcoin"></span></div>
<div class="name">Crypto trading</div>
<div class="text"></div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-chess-knight"></span></div>
<div class="name">Chess</div>
<div class="text"></div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-building"></span></div>
<div class="name">Real estate</div>
<!-- <div class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div> -->
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<!-- Works -->
<div class="section works" id="section-portfolio">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Portfolio</div>
</div>
<!-- portfolio items -->
<div class="box-items portfolio-items">
<div class="box-item f-gallery">
<div class="image">
<a href="#gallery-1" class="has-popup-gallery hover-animated">
<img src="images/dronline.jpeg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-images"></span>
<span class="desc">
<span class="category">Dr. Online</span>
<span class="name">Your ideal health partner</span>
</span>
</span>
</span>
</span>
</a>
<div id="gallery-1" class="mfp-hide">
<a href="images/dronline.jpeg"></a>
<a href="images/dronline3.jpeg"></a>
<a href="images/dronline2.jpg"></a>
<a href="images/dronline4.jpg"></a>
</div>
</div>
</div>
<div class="box-item f-links">
<div class="image">
<a href="https://re-core.github.io/LawikArchitect/" class="has-popup-link hover-animated" target="_blank">
<img src="images/lawikArchi.png" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-link"></span>
<span class="desc">
<span class="category">Lawik Art</span>
<span class="name">NFT Gallery website</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div>
<div class="box-item f-video">
<div class="image">
<a href="https://youtu.be/ZGQo-kul9No" class="has-popup-video hover-animated">
<img src="images/ios_weather_app.png" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-video"></span>
<span class="desc">
<span class="category">IOS Weather App</span>
<span class="name">Simple weather app with REST Api</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div>
<div class="box-item f-video">
<div class="image">
<a href="https://youtu.be/x0TFbGNhMQQ" class="has-popup-video hover-animated">
<img src="images/ios_uber_clone.png" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-video"></span>
<span class="desc">
<span class="category">IOS Ride sharing</span>
<span class="name">Transportation made Easy</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div>
<!-- <div class="box-item f-image">
<div class="image">
<a href="images/work4.jpg" class="has-popup-image hover-animated">
<img src="images/work4.jpg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-image"></span>
<span class="desc">
<span class="category">Image</span>
<span class="name">Inspiration in Cap Haitian</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div> -->
<!-- <div class="box-item f-image">
<div class="image">
<a href="images/work7.jpg" class="has-popup-image hover-animated">
<img src="images/work7.jpg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-image"></span>
<span class="desc">
<span class="category">Image</span>
<span class="name">Water and Shore</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div> -->
<!-- <div class="box-item f-music">
<div class="image">
<a href="https://w.soundcloud.com/player/?visual=true&url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F221650664&show_artwork=true" class="has-popup-music hover-animated">
<img src="images/work6.jpg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-music"></span>
<span class="desc">
<span class="category">Music</span>
<span class="name">Dark Bike</span>
</span>
</span>
</span>
</span>
</a>
</div>
</div> -->
<!-- <div class="box-item f-gallery">
<div class="image">
<a href="#gallery-2" class="has-popup-gallery hover-animated">
<img src="images/work5.jpg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-images"></span>
<span class="desc">
<span class="category">Gallery</span>
<span class="name">Undulating Space</span>
</span>
</span>
</span>
</span>
</a>
<div id="gallery-2" class="mfp-hide">
<a href="images/work5.jpg"></a>
<a href="images/work1.jpg"></a>
<a href="images/work2.jpg"></a>
<a href="images/work3.jpg"></a>
</div>
</div>
</div> -->
<!-- <div class="box-item f-content">
<div class="image">
<a href="#popup-1" class="has-popup-media hover-animated">
<img src="images/work8.jpg" class="wp-post-image" alt="" />
<span class="info circle">
<span class="centrize full-width">
<span class="vertical-center">
<span class="icon fas fa-plus"></span>
<span class="desc">
<span class="category">Content</span>
<span class="name">Curved Ceiling Ribs</span>
</span>
</span>
</span>
</span>
</a>
</div>
<div id="popup-1" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image" style="background-image: url(images/work8.jpg);"></div>
<div class="desc single-post-text">
<div class="category">Content</div>
<h4>Hand holding pyramid painting</h4>
<p>
Now there is more fashion. There is no so-called trends. Now chase after anything not necessary — nor for fashionable color nor the shape, nor for style. Think about the content that you want to invest in a created object, and only then will form. The thing is your spirit. A spirit unlike forms hard copy.
</p>
<ul>
<li>Now there is more fashion. There is no so-called trends.</li>
<li>Now chase after anything not necessary — nor for fashionable color nor the shape, nor for style.</li>
<li>Think about the content that you want to invest in a created object, and only then will form.</li>
<li>The thing is your spirit. A spirit unlike forms hard copy.</li>
</ul>
<p>
Now there is more fashion. There is no so-called trends. Now chase after anything not necessary — nor for fashionable color nor the shape, nor for style. Think about the content that you want to invest in a created object, and only then will form. The thing is your spirit. A spirit unlike forms hard copy.
</p>
<a href="works_single_1.html" class="btn hover-animated">
<span class="circle"></span>
<span class="lnk">View Project</span>
</a>
</div>
</div>
</div>
</div> -->
</div>
<div class="clear"></div>
</div>
</div>
<!-- Section Contacts Info -->
<div class="section contacts" id="section-contacts">
<div class="content">
<!-- title -->
<div class="title">
<div class="title_inner">Contacts</div>
</div>
<!-- contacts items -->
<div class="service-items">
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-phone"></span></div>
<div class="name">Phone</div>
<div class="text">+964 770 815 0017</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-envelope"></span></div>
<div class="name">Email</div>
<div class="text"><a href="[email protected]">[email protected]</a></div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-map-marker-alt"></span></div>
<div class="name">Address</div>
<div class="text">Iraq, Kurdistan region, Erbil</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fas fa-user-tie"></span></div>
<div class="name">Freelance Available</div>
<div class="text">I am available for Freelance hire</div>
</div>
</div>
<div class="service-col">
<div class="service-item content-box">
<div class="icon"><span class="fab fa-black-tie"></span></div>
<div class="name">Fulltime Available</div>
<div class="text">I am available for fulltime hire</div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<!-- Section Contacts Form -->
<!-- <div class="section contacts" id="section-contacts-form">
<div class="content">
<*-- title --*>
<div class="title">
<div class="title_inner">Contact Me</div>
</div>
<*-- form --*>
<div class="contact_form content-box">
<form id="cform" method="post">
<div class="group-val">
<input type="text" name="name" placeholder="Name" />
</div>
<div class="group-val">
<input type="email" name="email" placeholder="Email" />
</div>
<div class="group-val ct-gr">
<textarea name="message" placeholder="Message"></textarea>
</div>
<div class="group-bts">
<button type="submit" class="btn hover-animated">
<span class="circle"></span>
<span class="lnk">Send Message</span>
</button>
</div>
</form>
<div class="alert-success">
<p>Thanks, your message is sent successfully.</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
-->
</div>
<!-- Footer -->
<footer class="footer">
<div class="copy">
<p>E: [email protected]</p>
<p>T: <a href="tel:+9647708150017">+964 770 815 0017</a></p>
<img src="images/website_barcode.png" height="92px" width="92px"/>
</div>
<div class="soc-box">
<div class="follow-label">Follow Me</div>
<div class="soc">
<a target="_blank" href="https://www.facebook.com/RebinDvlpr">
<span class="icon fab fa-facebook"></span>
</a>
<a target="_blank" href="https://www.linkedin.com/in/rebin-aziz-902802162/">
<span class="icon fab fa-linkedin"></span>
</a>
</div>
</div>
<div class="clear"></div>
</footer>
<!-- Lines -->
<div class="lines">
<div class="line-col"></div>
<div class="line-col"></div>
<div class="line-col"></div>
<div class="line-col"></div>
<div class="line-col"></div>
</div>
</div>
<!-- Scripts -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.validate.js"></script>
<script src="js/magnific-popup.js"></script>
<script src="js/simpleParallax.js"></script>
<script src="js/typed.js"></script>
<script src="js/jarallax.js"></script>
<script src="js/jarallax-video.js"></script>
<script src="js/jarallax-element.js"></script>
<script src="js/imagesloaded.pkgd.js"></script>
<script src="js/isotope.pkgd.js"></script>
<script src="js/swiper.js"></script>
<script src="js/grained.js"></script>
<!-- Google map api -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDz2w7HUaWudHwd7AWQpCL48Qs050WOn9s"></script>
<script src="js/scripts.js"></script>
</body>
</html>