-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1353 lines (1308 loc) · 54.4 KB
/
index.html
File metadata and controls
1353 lines (1308 loc) · 54.4 KB
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" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Name of your web site">
<meta name="author" content="Marketify">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Taherul Islam</title>
<!-- STYLES -->
<link
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/dark.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--<link rel="stylesheet" type="text/css" href="css/dark.css" />-->
<!--[if lt IE 9]> <script type="text/javascript" src="js/modernizr.custom.js"></script> <![endif]-->
<!-- /STYLES -->
</head>
<body class="dark">
<!-- PRELOADER -->
<div id="preloader">
<div class="loader_line"></div>
</div>
<!-- /PRELOADER -->
<!-- WRAPPER ALL -->
<div class="taherultm_all_wrap" data-magic-cursor="show">
<!-- If you want disable magic cursor change value to "hide" -->
<!-- MODALBOX -->
<div class="taherultm_modalbox">
<div class="box_inner">
<div class="close">
<a href="#"><img class="svg" src="img/svg/cancel.svg" alt="" /></a>
</div>
<div class="description_wrap"></div>
</div>
</div>
<!-- /MODALBOX -->
<!-- TOPBAR -->
<div class="taherultm_topbar">
<div class="container">
<div class="topbar_inner">
<div class="logo">
<a href="#"><img src="img/logo/GitHub_Logo_White.png" alt="" /></a>
</div>
<div class="right">
<div class="social">
<ul>
<li><a href="https://github.com/imtaherul" target="_blank"><img class="svg" src="img/svg/social/github.png" alt="" /></a></li>
<!-- <li><a href="https://www.twitter.com/imtaherul" target="_blank"><img class="svg" src="img/svg/social/twitter.svg" alt="" /></a></li> -->
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- /TOPBAR -->
<!-- HERO -->
<div class="taherultm_hero">
<div class="background_shape"></div>
<div class="hero_content">
<div class="container">
<div class="content_inner">
<div class="main_info">
<div class="left">
<span class="subtitle">I'm</span>
<h3 class="name">Taherul Islam</h3>
<p class="text">A passionate Bi Developer and Data analyst based in Riyadh, KSA</p>
<!-- <div class="taherultm_video">
<div class="video_inner">
<div class="circle"></div>
<h3 class="play">Play Video</h3>
<a class="taherultm_full_link popup-youtube" href="https://www.youtube.com/watch?v=7e90gBu4pas"></a>
</div>
</div> -->
</div>
<div class="right">
<div class="image">
<img src="img/thumbs/47-60.jpg" alt="" />
<div class="main" data-img-url="img/about/11.jpg"></div>
</div>
</div>
</div>
<div class="main_menu">
<ul>
<li>
<img class="svg" src="img/svg/archive.svg" alt="" />
<span>About Me</span>
<a class="taherultm_full_link" href="#about"></a>
</li>
<li>
<img class="svg" src="img/svg/contacs.svg" alt="" />
<span>Skill</span>
<a class="taherultm_full_link" href="#resume"></a>
</li>
<!-- <li>
<img class="svg" src="img/svg/briefcase.svg" alt="" />
<span>Portfolio</span>
<a class="taherultm_full_link" href="#portfolio"></a>
</li>
<li>
<img class="svg" src="img/svg/gear.svg" alt="" />
<span>Service</span>
<a class="taherultm_full_link" href="#service"></a>
</li> -->
<!-- <li>
<img class="svg" src="img/svg/message.svg" alt="" />
<span>Testimonial</span>
<a class="taherultm_full_link" href="#testimonials"></a>
</li>
<li>
<img class="svg" src="img/svg/writing.svg" alt="" />
<span>Blog</span>
<a class="taherultm_full_link" href="#news"></a>
</li>
<li>
<img class="svg" src="img/svg/letter.svg" alt="" />
<span>Contact</span>
<a class="taherultm_full_link" href="#contact"></a>
</li> -->
</ul>
</div>
</div>
</div>
</div>
<!-- Hero Shapes -->
<div class="simple_shapes">
<span class="one anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="two anim_moveLeft"><img class="svg" src="img/svg/shapes/dot.svg" alt="" /></span>
<span class="three anim_moveTop"><img class="svg" src="img/svg/shapes/dot-2.svg" alt="" /></span>
<span class="four anim_circle"><img class="svg" src="img/svg/shapes/1.svg" alt="" /></span>
<span class="five anim_circle"><img class="svg" src="img/svg/shapes/8.svg" alt="" /></span>
<span class="six anim_circle"><img class="svg" src="img/svg/shapes/3.svg" alt="" /></span>
<span class="seven anim_right"><img class="svg" src="img/svg/shapes/4.svg" alt="" /></span>
<span class="eight anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="nine anim_circle"><img class="svg" src="img/svg/shapes/3.svg" alt="" /></span>
<span class="ten anim_moveLeft"><img class="svg" src="img/svg/shapes/4.svg" alt="" /></span>
<span class="eleven anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="twelve anim_extra"><img class="svg" src="img/svg/shapes/2.svg" alt="" /></span>
<span class="thirteen anim_circle"><img class="svg" src="img/svg/shapes/5.svg" alt="" /></span>
<span class="fourteen anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="fifteen anim_circle"><img class="svg" src="img/svg/shapes/3.svg" alt="" /></span>
<span class="sixteen anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="seventeen anim_circle"><img class="svg" src="img/svg/shapes/5.svg" alt="" /></span>
<span class="eighteen anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="nineteen anim_scale"><img class="svg" src="img/svg/shapes/9.svg" alt="" /></span>
<span class="twenty anim_circle"><img class="svg" src="img/svg/shapes/1.svg" alt="" /></span>
</div>
<!-- /Hero Shapes -->
</div>
<!-- /HERO -->
<!-- MAINPART -->
<div class="container">
<div class="taherultm_mainpart">
<!-- ABOUT -->
<div id="about" class="taherultm_main_section">
<div class="taherultm_about">
<div class="left">
<div class="left_inner">
<div class="image">
<img src="img/thumbs/35-44.jpg" alt="" />
<div class="main" data-img-url="img/about/11.jpg"></div>
</div>
<div class="details">
<ul>
<li>
<h3>Name</h3>
<span>Md Taherul Islam</span>
</li>
<li>
<h3>Birthday</h3>
<span>June 05</span>
</li>
<li>
<h3>Mail</h3>
<span>imtaherul@gmail.com</span>
</li>
<li>
<h3>Phone</h3>
<span>+56073573</span>
</li>
<li>
<h3>Address</h3>
<span>Riyadh, KSA</span>
</li>
<li>
<h3>Nationality</h3>
<span>Bangladeshi</span>
</li>
</ul>
</div>
</div>
</div>
<div class="right">
<div class="taherultm_main_title">
<span>About Me</span>
<h3>DevOps | GCP Specialist</h3>
</div>
<div class="bigger_text">
<p>Business Analysis | Process Automation | Data Visualization</p>
</div>
<div class="text">
<p>Strong information technology professional and experienced Team Lead with a
demonstrated history of working in the internet industry. I am skilled in Business
Analysis | Data analytics | Process Automation | Data Visualization Google Cloud
Platform, DevOps, Windows Linux, SQL Python JavaScript, Microsoft office, Warehouse
management, critical thinking, and problem-solving skills, Planning organizing
influencing, and leading, decision-making, persuasiveness delegation negotiation,
adaptability, stress tolerance, Teamwork, and Strategic Planning.</p>
</div>
</div>
</div>
</div>
<!-- /ABOUT -->
<!-- RESUME -->
<div id="resume" class="taherultm_main_section">
<div class="taherultm_resume">
<div class="taherultm_main_title">
<span>Skill</span>
<h3>Combination of Skill & Experience</h3>
</div>
<div class="resume_inner">
<div class="left">
<!-- <div class="info_list">
<div class="taherultm_resume_title">
<h3>Education</h3>
<span class="shape"></span>
</div>
<ul>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Cognitive Sciences</h3>
<span>University of Maine</span>
</div>
<div class="year">
<span>2018 - 2020</span>
</div>
</div>
<div class="text">
<p>The goal of cognitive science is to understand the principles of intelligence with the hope that this will lead to better comprehension.</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Civil Engineering</h3>
<span>University of Texas</span>
</div>
<div class="year">
<span>2016 - 2017</span>
</div>
</div>
<div class="text">
<p>Civil engineering is arguably the oldest engineering discipline. It deals with the built environment and can be dated to the first time someone placed a roof.</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Bachelor of Science</h3>
<span>Univercity of Dhaka</span>
</div>
<div class="year">
<span>2012 - 2015</span>
</div>
</div>
<div class="text">
<p>This project is called a thesis and is usually presented in front of a group of people, including university professors who will evaluate it and let the student..</p>
</div>
</div>
</li>
</ul>
</div> -->
<div class="info_list">
<div class="taherultm_resume_title">
<h3>Experience</h3>
<span class="shape"></span>
</div>
<ul>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Data Analyst</h3>
<span><a href="https://www.noon.com" target="_blank"
class="noon_link">noon Ecommerce Soliution</a></span>
</div>
<div class="year">
<span> Apr 2022 - running</span>
</div>
</div>
<div class="text">
<p>1. Performed in-depth data validation on data from various
stakeholders across the UAE, KSA, and Egypt.<br />
2. Create and maintain rich interactive visualizations through
data interpretation and analysis integrating various reporting
components from multiple data sources.<br />
3. Proactively analyze data to answer key questions from
stakeholders or out of self-initiated curiosity with an eye for
what drives business performance, investigating and
communicating areas for improvement in efficiency and
productivity.<br />
4. Work closely with stakeholders to understand and maintain
focus on their analytical needs, including identifying critical
metrics and KPIs, and delivering actionable insights to relevant
decision-makers.
</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Fulfillment Supervisor</h3>
<span><a href="https://www.noon.com" target="_blank"
class="noon_link">noon Ecommerce Soliution</a></span>
</div>
<div class="year">
<span> June 2020 - Mar 2022</span>
</div>
</div>
<div class="text">
<p>1. Assisted supervisors and employees with daily tasks related to
order fulfillment.<br />
2. Delivered inventory reports to my manager in a timely fashion
each and every week.<br />
3. Worked to ensure the safety, comfort, and fulfillment of all
members.<br />
4. Reported findings and concerning situations to my supervisor
on a weekly basis.<br />
5. Supply chain Process design, Process excellence, and
improvement for KSA Region.<br />
6. Responsible for Operation Excellence, Audit, Training,
Learning & Development for multiple Fulfillment Centers in
Riyadh.<br />
7. S&OP Project management and planning for the biggest sales of
the year (Yellow Friday Sale, Ramadan Sale).
</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Team Leader</h3>
<span><a href="https://www.noon.com" target="_blank"
class="noon_link">noon Ecommerce Soliution</a></span>
</div>
<div class="year">
<span>Sep 2018 - May 2020</span>
</div>
</div>
<div class="text">
<p>
1. Monitored the performance of sales team members and worked to
increase team morale and motivation.<br />
2. Worked as a productive and positive team member to design,
code, test, report, and debug operations.<br />
3. Served as a successful leader, promoting and achieving store
success.<br />
4. Promoted team-building skills and fostered positive team
relationships.<br />
5. Worked well independently and within a team setting.
</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Problem Solver</h3>
<span><a href="https://www.noon.com" target="_blank"
class="noon_link">noon Ecommerce Soliution</a></span>
</div>
<div class="year">
<span>Mar 2018 - Aug 2018</span>
</div>
</div>
<div class="text">
<p>Outlined problem areas and created real solutions.
Problem solved for each department to maintain timely completion
of parts and meet strict deadlines.
Implemented problem-solving skills to work through employee,
customer, and managerial staff issues and challenges.<br />
Brought forth visual and analytical innovation and
problem-solving in 3-dimensional spaces.
Worked with senior executives to develop problem-solving
strategies.
</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Warehouse Associate</h3>
<span><a href="https://www.noon.com" target="_blank"
class="noon_link">noon Ecommerce Soliution</a></span>
</div>
<div class="year">
<span>Dec 2017 - Feb 2018</span>
</div>
</div>
<div class="text">
<p>Worked to ensure a positive and hassle-free customer experience.
Settled any customer disputes in a professional and pleasant
manner.
Identified and maximized sales opportunities, and increased
customer retention rates.
Worked to ensure a neat and attractive sales environment, and
assisted in the setup of visual displays.
</p>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="short">
<div class="job">
<h3>Web Designer</h3>
<span>Wel Cast IT</span>
</div>
<div class="year">
<span>Jan 2016 - May 2017</span>
</div>
</div>
<!-- <div class="text">
<p>My strength is I’m Skilled in Data analytics | data visualization with Google Cloud Platform
SQL python JavaScript, Microsoft Office Google Doc's,
Teamwork, Strategic Planning, organizing, leading, problem-solving, decision-making,
adaptability, accuracy, stress tolerance, and negotiation
Last year: Data Studio, Google apps script, SQL
</p>
</div> -->
</div>
</li>
</ul>
</div>
</div>
<div class="right">
<div class="skills_list">
<div class="taherultm_resume_title">
<h3>Software Skills</h3>
<span class="shape"></span>
</div>
<div class="personal">
<div class="dodo_progress">
<div class="progress_inner" data-value="90">
<span><span class="label">Ms Office</span><span
class="number">90%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="95">
<span><span class="label">Google Apps</span><span
class="number">95%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="100">
<span><span class="label">Google BigQuery</span><span
class="number">100%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="80">
<span><span class="label">Google Data Studio</span><span
class="number">80%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="50">
<span><span class="label">Google Apps Script</span><span
class="number">50%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="50">
<span><span class="label">Google Cloud AutoML</span><span
class="number">50%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="60">
<span><span class="label">Python</span><span
class="number">60%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
<div class="progress_inner" data-value="60">
<span><span class="label">JavaScript</span><span
class="number">60%</span></span>
<div class="background">
<div class="bar">
<div class="bar_in"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="skills_list">
<div class="taherultm_resume_title">
<h3>Personal Skills</h3>
<span class="shape"></span>
</div>
<div class="software">
<div class="circular_progress_bar">
<ul>
<li>
<div class="list_inner">
<div class="myCircle" data-value="0.9"></div>
<div class="title">
<h3>Data Analysis</h3>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="myCircle" data-value="0.8"></div>
<div class="title">
<h3>Strategic Planning</h3>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="myCircle" data-value="1"></div>
<div class="title">
<h3>Warehouse and Team Management</h3>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="myCircle" data-value="0.75"></div>
<div class="title">
<h3>Business Intelligence</h3>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /RESUME -->
<!-- PORTFOLIO -->
<!-- <div id="portfolio" class="taherultm_main_section">
<div class="taherultm_portfolio">
<div class="taherultm_main_title">
<span>Resume</span>
<h3>My works that I did for clients</h3>
</div>
<div class="portfolio_filter">
<ul>
<li><a href="#" class="current" data-filter="*">All</a></li>
<li><a href="#" data-filter=".vimeo">Vimeo</a></li>
<li><a href="#" data-filter=".youtube">Youtube</a></li>
<li><a href="#" data-filter=".soundcloud">Soundcloud</a></li>
<li><a href="#" data-filter=".detail">Detail</a></li>
</ul>
</div>
<div class="portfolio_list">
<ul class="gallery_zoom">
<li class="vimeo">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/social/vimeo.svg" alt="" />
<div class="details">
<span>Vimeo</span>
<h3>Aumeo Audio</h3>
</div>
<a class="taherultm_full_link popup-vimeo" href="#"></a>
</div>
</li>
<li class="youtube">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/2.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/social/youtube-2.svg" alt="" />
<div class="details">
<span>Youtube</span>
<h3>Bicker & Jenna</h3>
</div>
<a class="taherultm_full_link popup-youtube" href="#"></a>
</div>
</li>
<li class="soundcloud">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/social/soundcloud.svg" alt="" />
<div class="details">
<span>Soundcloud</span>
<h3>Botanical Escape</h3>
</div>
<a class="taherultm_full_link soundcloude_link mfp-iframe audio" href="#"></a>
</div>
</li>
<li class="youtube">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/6.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/social/youtube-2.svg" alt="" />
<div class="details">
<span>Youtube</span>
<h3>Model Car</h3>
</div>
<a class="taherultm_full_link popup-youtube"
href="https://www.youtube.com/watch?v=l-epKcOA7RQ"></a>
</div>
</li>
<li class="vimeo">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/7.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/social/vimeo.svg" alt="" />
<div class="details">
<span>Vimeo</span>
<h3>Smart Watch</h3>
</div>
<a class="taherultm_full_link popup-vimeo"
href="https://vimeo.com/337292310"></a>
</div>
</li>
<li class="detail">
<div class="list_inner">
<div class="image">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/8.jpg"></div>
</div>
<div class="overlay"></div>
<img class="svg" src="img/svg/text.svg" alt="" />
<div class="details">
<span>Detail</span>
<h3>Teresa Melbig</h3>
</div>
<a class="taherultm_full_link portfolio_popup" href="#"></a>
<div class="hidden_content">
<div class="popup_details">
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate
on our ideas as flexibly as possible. Building mockups
strikes the ideal balance ease of modification.</p>
<p>Mockups are useful both for the creative phase of the project
- for instance when you're trying to figure out your user
flows or the proper visual hierarchy - and the production
phase when they will represent the target product.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Detail</a></span>
</li>
<li>
<span class="first">Date</span>
<span>March 07, 2021</span>
</li>
<li>
<span class="first">Share</span>
<ul class="share">
<li><a href="#"><img class="svg"
src="img/svg/social/facebook.svg"
alt="" /></a></li>
<li><a href="#"><img class="svg"
src="img/svg/social/twitter.svg"
alt="" /></a></li>
<li><a href="#"><img class="svg"
src="img/svg/social/instagram.svg"
alt="" /></a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="additional_images">
<ul>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main"
data-img-url="img/portfolio/1.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main"
data-img-url="img/portfolio/2.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main"
data-img-url="img/portfolio/3.jpg"></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div> -->
<!-- /PORTFOLIO -->
<!-- SERVICES -->
<!-- <div id="service" class="taherultm_main_section">
<div class="taherultm_services">
<div class="taherultm_main_title">
<span>Service</span>
<h3>Never compromise with quality</h3>
</div>
<div class="service_list">
<ul>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/squares.svg" alt="" /></span>
<h3 class="title">Wireframing</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/1.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design
team that creates innovative, effective websites that capture
your brand, improve your conversion rates, and maximize your
revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction
consumers have with your business. That's why almost 95 percent
of a user’s first impression relates to web design. It’s also
why web design services can have an immense impact on your
company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their
website’s design but also partnering with Kura, the web design
agency that’s driven more than $2.4 billion in revenue for its
clients. With over 50 web design awards under our belt, we're
confident we can design a custom website that drives sales for
your unique business.</p>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/physics.svg" alt="" /></span>
<h3 class="title">Prototype</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/2.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design
team that creates innovative, effective websites that capture
your brand, improve your conversion rates, and maximize your
revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction
consumers have with your business. That's why almost 95 percent
of a user’s first impression relates to web design. It’s also
why web design services can have an immense impact on your
company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their
website’s design but also partnering with Kura, the web design
agency that’s driven more than $2.4 billion in revenue for its
clients. With over 50 web design awards under our belt, we're
confident we can design a custom website that drives sales for
your unique business.</p>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/web.svg" alt="" /></span>
<h3 class="title">UI Design</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/3.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design
team that creates innovative, effective websites that capture
your brand, improve your conversion rates, and maximize your
revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction
consumers have with your business. That's why almost 95 percent
of a user’s first impression relates to web design. It’s also
why web design services can have an immense impact on your
company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their
website’s design but also partnering with Kura, the web design
agency that’s driven more than $2.4 billion in revenue for its
clients. With over 50 web design awards under our belt, we're
confident we can design a custom website that drives sales for
your unique business.</p>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/user.svg" alt="" /></span>
<h3 class="title">Personal Creation</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/4.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design
team that creates innovative, effective websites that capture
your brand, improve your conversion rates, and maximize your
revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction
consumers have with your business. That's why almost 95 percent
of a user’s first impression relates to web design. It’s also
why web design services can have an immense impact on your
company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their
website’s design but also partnering with Kura, the web design
agency that’s driven more than $2.4 billion in revenue for its
clients. With over 50 web design awards under our belt, we're
confident we can design a custom website that drives sales for
your unique business.</p>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/briefcase.svg" alt="" /></span>
<h3 class="title">Case Study</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/5.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design
team that creates innovative, effective websites that capture
your brand, improve your conversion rates, and maximize your
revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction
consumers have with your business. That's why almost 95 percent
of a user’s first impression relates to web design. It’s also
why web design services can have an immense impact on your
company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their
website’s design but also partnering with Kura, the web design
agency that’s driven more than $2.4 billion in revenue for its
clients. With over 50 web design awards under our belt, we're
confident we can design a custom website that drives sales for
your unique business.</p>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<span class="icon"><img class="svg" src="img/svg/writing_2.svg" alt="" /></span>
<h3 class="title">Experience Design</h3>
<p class="text">Web development is the building and maintenance of websites.
it’s the work that...</p>
<a class="taherultm_full_link" href="#"></a>
<div class="hidden_content">
<div class="service_informations">
<div class="image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/service/6.jpg"></div>
</div>
<div class="description">
<p>iKnow is a leading web design agency with an award-winning design