-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
877 lines (867 loc) · 83.4 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link media="all" href="assets/css/dark.css" rel="stylesheet" />
<title>Portfolio | Niby Parameswaran</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Niby Parameswaran - A Full Stack Developer & React Native Developer" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://nibyp.github.io/niby/assets/images/og.png" />
<meta property="og:url" content="https://nibyp.github.io/niby" />
<link rel="stylesheet" id="vcard-fonts-css" href="https://fonts.googleapis.com/css?family=Archivo%3A400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CMerriweather%3A400%2C900&display=swap" type="text/css" media="all" />
<link
rel="stylesheet"
id="google-fonts-1-css"
href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.9"
type="text/css"
media="all"
/>
<script type="text/javascript" src="assets/js/jquery/jquery.minaf6c.js?ver=3.6.0" id="jquery-core-js"></script>
<style>
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */
.single-post-text p{
font-size: 1rem;
}
.news-grid {
display: block !important;
}
.news-item {
width: calc(100% - 30px) !important;
margin-bottom: 11.875rem !important;
}
.news-item__image-wrap.left {
float: left;
}
.news-item__image-wrap.right {
float: right;
}
.news-item__image-wrap {
border-radius: 20px !important;
height: 18rem !important;
}
.news-item:hover .news-item__image-wrap:before, .news-item:hover .news-item__image-wrap:after {
opacity: 0 !important;
}
.p-left-txt{
padding-left: 30rem;
}
.p-right-txt{
padding-right: 27rem;
}
.work-1 {
height: 27rem !important;
margin-top: -5rem;
}
.work-1-text {
padding-right: 17rem;
}
.p-left-txt-app{
padding-left: 17rem;
}
}
/* .news-item__image-wrap {
background: linear-gradient(338.83deg,#f8c6ff -3.41%,rgba(255,196,255,0) 52.31%),#ffeec4;
} */
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6B7JL264TY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6B7JL264TY');
</script>
</head>
<body class="home page-template page-template-template-layout-builder page-template-template-layout-builder-php page page-id-39 elementor-default elementor-kit-7 elementor-page elementor-page-39">
<div class="preloader">
<div class="preloader__wrap">
<div class="circle-pulse">
<div class="circle-pulse__1"></div>
<div class="circle-pulse__2"></div>
</div>
<div class="preloader__progress"><span></span></div>
</div>
</div>
<main class="main">
<div class="container gutter-top">
<div class="row sticky-parent">
<aside class="col-12 col-md-12 col-xl-3">
<div class="sidebar box shadow pb-0 sticky-column">
<a href="index.html">
<svg class="avatar avatar--180" viewBox="0 0 188 188">
<g class="avatar__box"><image xlink:href="assets/images/profile-pic.png" height="100%" width="100%" /></g>
</svg>
</a>
<div class="text-center">
<h3 class="title title--h3 sidebar__user-name"><span class="weight--500">Niby</span> Parameswaran</h3>
<div class="badge badge--gray">Full Stack Developer</div>
<div class="social">
<a target="_blank" data-no-swup class="social__link" href="https://www.linkedin.com/in/niby-parameswaran/" title="LinkedIn"> <i class="fab fa-linkedin-in"></i> </a>
<a target="_blank" data-no-swup class="social__link" href="https://github.com/NibyP" title="GitHub"> <i class="fab fa-github"></i> </a>
<!-- <a target="_blank" data-no-swup class="social__link" href="https://instagram.com/" title="Instagram"> <i class="fab fa-instagram"></i> </a> -->
</div>
</div>
<div class="sidebar__info box-inner box-inner--rounded">
<ul class="contacts-block">
<!-- <li class="contacts-block__item" data-toggle="tooltip" data-placement="top" title="Birthday"><i class="font-icon icon-calendar"></i> March 30, 1994</li> -->
<li class="contacts-block__item" data-toggle="tooltip" data-placement="top" title="Address"><i class="font-icon icon-location"></i> Kerala, India</li>
<li class="contacts-block__item" data-toggle="tooltip" data-placement="top" title="Email">
<a href="mailto:example@mail.com" target="_blank"> <i class="font-icon icon-envelope"></i> nibyparameswaran99@gmail.com </a>
</li>
<li class="contacts-block__item" data-toggle="tooltip" data-placement="top" title="Phone">
<a href="tel:+918921421654" target="_blank"> <i class="font-icon icon-phone"></i> +91 8921421654 </a>
</li>
<li class="contacts-block__item" data-toggle="tooltip" data-placement="top" title="Skype">
<a href="skype:nibyparameswaran99" target="_blank"> <i class="font-icon icon-skype"></i> nibyparameswaran99 </a>
</li>
</ul>
<!-- <a class="btn" target="_blank" data-no-swup href="#"><i class="font-icon icon-download"></i> Download CV</a> -->
</div>
</div>
</aside>
<div class="col-12 col-md-12 col-xl-9">
<div class="box shadow pb-0">
<div id="swupMenu">
<div class="circle-menu">
<div class="">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
<div class="inner-menu js-menu">
<!-- hamburger <ul id="menu-main-menu" class="nav">
<li id="menu-item-117" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-39 current_page_item nav__item">
<a class="" href="index.html">
<span class="animated-button"><span>Home</span></span>
</a>
</li>
<li id="menu-item-116" class="menu-item menu-item-type-post_type menu-item-object-page nav__item">
<a class="" href="resume.html">
<span class="animated-button"><span>Resume</span></span>
</a>
</li>
<li id="menu-item-114" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children dropdown nav__item">
<a class="" href="portfolio.html">
<span class="animated-button">
<span>Portfolio </span>
</span>
</a>
</li>
<li id="menu-item-113" class="menu-item menu-item-type-post_type menu-item-object-page nav__item">
<a class="" href="blog.html">
<span class="animated-button"><span>Blog</span></span>
</a>
</li>
<li id="menu-item-115" class="menu-item menu-item-type-post_type menu-item-object-page nav__item">
<a class="" href="contact.html">
<span class="animated-button"><span>Contacts</span></span>
</a>
</li>
</ul> -->
</div>
</div>
<div class="page-wrap">
<div class="transition-fade" id="swup">
<div id="post-39" class="post-39 page type-page status-publish hentry">
<div data-elementor-type="wp-page" data-elementor-id="39" class="elementor elementor-39" data-elementor-settings="[]">
<div class="elementor-section-wrap">
<section
class="elementor-section elementor-top-section elementor-element elementor-element-55a2894 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="55a2894"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a0b559d" data-id="a0b559d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-9d8e3cd elementor-widget elementor-widget-vcard-about-me"
data-id="9d8e3cd"
data-element_type="widget"
data-widget_type="vcard-about-me.default"
>
<div class="elementor-widget-container">
<div class="pb-0 pb-sm-2 section">
<h2 class="title title--h title--h2 first-title title__separate"><span> About Me </span></h2>
<div class="single-post-text">
<div>
<h3>I like tech, art and their intersection.</h3>
<p>I am a developer based in India.</p>
<p>
National and international customers have relied on me for design, development, implementation, and management of their digital products.
</p>
<p>
As a freelancer, I works also with web agencies, companies, startups and individuals to create a blueprint for the digital business.
</p>
<p>I like solving problems and making things beautiful—and get to combine both of these pursuits every day in my work doing web and app development.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="elementor-section elementor-top-section elementor-element elementor-element-d6cd532 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="d6cd532"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e4cfdb4" data-id="e4cfdb4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-ec6423b elementor-widget elementor-widget-vcard-portfolio"
data-id="ec6423b"
data-element_type="widget"
data-widget_type="vcard-blog.default"
>
<div class="pb-2">
<h2 class="title title--h title--h3"><span> Selected Works </span></h2>
</div>
<div class="news-grid pb-0">
<article
id="post-104"
class="news-item box post-104 post type-post status-publish format-standard has-post-thumbnail hentry category-design tag-conferences tag-digest tag-event"
>
<div class="news-item__image-wrap right overlay overlay--45 work-1">
<!-- <div class="news-item__date">July 13, 2021</div> -->
<!-- <a class="news-item__link" href="../2021/07/13/design-conferences-in-2021/index.html"></a> -->
<img class="cover lazyload" src="assets/images/work-app.webp" alt="Muthassikathakal" />
</div>
<div class="news-item__caption p-right-txt work-1-text">
<div class="category-list"><div class="category">Design & Development</div></div>
<h2 class="title title--h4"><a href="https://play.google.com/store/apps/details?id=com.muthassikathakal" target="_blank">Muthassikathakal</a></h2>
<a href="https://github.com/NibyP/Muthassikathakal" target="_blank">View on GitHub <i class="fab fa-github-alt"></i></a>
<div class="short">
<p>Muthassikathal is a mobile app that provides unique reading experience whenever kids want to read a tale or listen from their parents.</p>
<div>
<a href="https://play.google.com/store/apps/details?id=com.muthassikathakal" target="_blank" class="btn"><i class="fab fa-google-play"></i> <span>Play Store</span> </a>
</div>
</div>
</div>
</article>
<article
id="post-104"
class="news-item box post-104 post type-post status-publish format-standard has-post-thumbnail hentry category-design tag-conferences tag-digest tag-event"
>
<div class="news-item__image-wrap left overlay overlay--45 work-1">
<!-- <div class="news-item__date">July 13, 2021</div> -->
<!-- <a class="news-item__link" href="../2021/07/13/design-conferences-in-2021/index.html"></a> -->
<img class="cover lazyload" src="assets/images/flappy.png" alt="FlappyMallow" />
</div>
<div class="news-item__caption p-left-txt-app ">
<div class="category-list"><div class="category">Design & Development</div></div>
<h2 class="title title--h4"><a href="https://github.com/NibyP/flappymallow/" target="_blank">FlappyMallow</a></h2>
<!-- <a href="https://github.com/NibyP/Muthassikathakal" target="_blank">View on GitHub <i class="fab fa-github-alt"></i></a> -->
<div class="short">
<p>A classy game with flappy mallows. Built with React Native. A clone of the famous and classic mobile game Flappy Bird, made with React Native w/Expo.</p>
<div>
<a href="https://github.com/NibyP/flappymallow/" target="_blank" class="btn"><i class="fab fa-github-alt"></i> <span>View on GitHub</span> </a>
</div>
</div>
</div>
</article>
<article id="post-102" class="news-item box post-102 post type-post status-publish format-standard has-post-thumbnail hentry category-art tag-art tag-creative">
<div class="news-item__image-wrap right overlay overlay--45">
<!-- <div class="news-item__date">July 13, 2021</div> -->
<!-- <a class="news-item__link" href="https://webbees.in/"></a> -->
<img class="cover lazyload" src="assets/images/portfolio-2.png" alt="Best Arts Every Designer" />
</div>
<div class="news-item__caption p-right-txt">
<div class="category-list"><div class="category">Design & Development</div></div>
<h2 class="title title--h4"><a href="https://webbees.in/" target="_blank">WebBees</a></h2>
<a href="https://github.com/annzmaria/webbees" target="_blank">View on GitHub <i class="fab fa-github-alt"></i></a>
<div class="short">
<p>Branding website for our freelance team.</p>
<div>
<a href="https://webbees.in/" target="_blank" class="btn"><span>Visit</span></a>
</div>
</div>
</div>
</article>
<!-- <article
id="post-100"
class="news-item box post-100 post type-post status-publish format-standard has-post-thumbnail hentry category-digest tag-bridge tag-design tag-nature"
>
<div class="news-item__image-wrap right overlay overlay--45">
<img class="cover lazyload" src="assets/images/portfolio-3.png" alt="Design Digest #80" />
</div>
<div class="news-item__caption p-right-txt">
<div class="category-list"><div class="category">Development</div></div>
<h2 class="title title--h4"><a href="https://staging.myfreshdelmonte.com" target="_blank">Del Monte</a></h2>
<div class="short">
<p>An e-commerce platform for selling food products. </p>
<div>
<a href="https://staging.myfreshdelmonte.com" target="_blank" class="btn"><span>View</span></a>
</div>
</div>
</div>
</article> -->
<article
id="post-100"
class="news-item box post-100 post type-post status-publish format-standard has-post-thumbnail hentry category-digest tag-bridge tag-design tag-nature"
>
<div class="news-item__image-wrap left overlay overlay--45">
<img class="cover lazyload" src="assets/images/tt.png" alt="Design Digest #80" />
</div>
<div class="news-item__caption p-left-txt">
<div class="category-list"><div class="category">Development</div></div>
<h2 class="title title--h4"><a href="https://essaysmaster.com" target="_blank">EssaysMaster</a></h2>
<div class="short">
<p>EssaysMaster is an online platform for providing best essay writing services. </p>
<div>
<a href="https://essaysmaster.com" target="_blank" class="btn"><span>View</span></a>
</div>
</div>
</div>
</article>
<article
id="post-98"
class="news-item box post-98 post type-post status-publish format-standard has-post-thumbnail hentry category-design tag-design tag-life tag-nature"
>
<div class="news-item__image-wrap right overlay overlay--45">
<!-- <div class="news-item__date">July 13, 2021</div> -->
<!-- <a class="news-item__link" href="https://motherlyneeds.com"></a> -->
<img class="cover lazyload" src="assets/images/portfolio-4.png" alt="Interactions of the week" />
</div>
<div class="news-item__caption p-right-txt">
<div class="category-list"><div class="category">Development</div></div>
<h2 class="title title--h4"><a href="https://motherlyneeds.com" target="_blank">Motherly Needs</a></h2>
<div class="short">
<p>A platform for booking prenatal and postnatal care treatments in beauty, health and wellness online.</p>
<div>
<a href="https://motherlyneeds.com" target="_blank" class="btn"><span>Visit Website</span></a>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section
class="elementor-section elementor-top-section elementor-element elementor-element-a3baa10 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="a3baa10"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0a35826" data-id="0a35826" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-9108147 elementor-widget elementor-widget-vcard-services"
data-id="9108147"
data-element_type="widget"
data-widget_type="vcard-services.default"
>
<div class="elementor-widget-container">
<div class="box-inner pb-0 section">
<h2 class="title title--h title--h3"><span> Selected Works </span></h2>
<div class="row">
<div class="col-12 col-lg-6">
<div class="case-item box box__second">
<img class="case-item__icon" src="assets/images/icon-design.png" alt="" />
<div>
<h3 class="title title--h5"><span> Web Design </span></h3>
<p class="case-item__caption"><span> The most modern and high-quality design made at a professional level. </span></p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="case-item box box__second">
<img class="case-item__icon" src="assets/images/icon-dev.png" alt="" />
<div>
<h3 class="title title--h5"><span> Web Development </span></h3>
<p class="case-item__caption"><span> High-quality and professional development of sites at the professional level. </span></p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="case-item box box__second">
<img class="case-item__icon" src="assets/images/icon-app.png" alt="" />
<div>
<h3 class="title title--h5"><span> Mobile Apps </span></h3>
<p class="case-item__caption"><span> Professional development of applications for iOS and Android. </span></p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="case-item box box__second">
<img class="case-item__icon" src="assets/images/icon-photo.png" alt="" />
<div>
<h3 class="title title--h5"><span> Photography </span></h3>
<p class="case-item__caption"><span> I make high-quality photos of any category at a professional level. </span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- <section
class="elementor-section elementor-top-section elementor-element elementor-element-ccdfdc5 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="ccdfdc5"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b3bae1f" data-id="b3bae1f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-c26c817 elementor-widget elementor-widget-vcard-pricing"
data-id="c26c817"
data-element_type="widget"
data-widget_type="vcard-pricing.default"
>
<div class="elementor-widget-container">
<div class="box-inner box-inner--white section">
<h2 class="title title--h title--h3"><span> Pricing plans </span></h2>
<div class="pricing-items">
<div class="pricing-col">
<div class="pricing-item content-box">
<div class="icon"><i class="fa fa-battery-1"></i></div>
<div class="name"><span> Basic Package </span></div>
<div class="amount">
<span class="number">
<span class="dollar"> <span> $ </span> </span> <span> 39 </span> <span class="period"> <span> hour </span> </span>
</span>
</div>
<div class="feature-list">
<div>
<ul>
<li>Web Design</li>
<li>Mobile Apps</li>
<li><em>Web Development</em></li>
<li><em>Photography</em></li>
</ul>
</div>
</div>
<div class="bts">
<a href="contacts/index.html" class="btn hover-animated">
<span class="circle"></span> <span> <span class="lnk">Get Started</span> </span>
</a>
</div>
</div>
</div>
<div class="pricing-col">
<div class="pricing-item content-box">
<div class="icon"><i class="fa fa-battery-2"></i></div>
<div class="name"><span> Pro Package </span></div>
<div class="amount">
<span class="number">
<span class="dollar"> <span> $ </span> </span> <span> 59 </span> <span class="period"> <span> hour </span> </span>
</span>
</div>
<div class="feature-list">
<div>
<ul>
<li>Web Design</li>
<li>Mobile Apps</li>
<li>Web Development</li>
<li><em>Photography</em></li>
</ul>
</div>
</div>
<div class="bts">
<a href="contacts/index.html" class="btn hover-animated">
<span class="circle"></span> <span> <span class="lnk">Get Started</span> </span>
</a>
</div>
</div>
</div>
<div class="pricing-col">
<div class="pricing-item content-box">
<div class="icon"><i class="fa fa-battery-4"></i></div>
<div class="name"><span> Premium Package </span></div>
<div class="amount">
<span class="number">
<span class="dollar"> <span> $ </span> </span> <span> 99 </span> <span class="period"> <span> hour </span> </span>
</span>
</div>
<div class="feature-list">
<div>
<ul>
<li>Web Design</li>
<li>Mobile Apps</li>
<li>Web Development</li>
<li>Photography</li>
</ul>
</div>
</div>
<div class="bts">
<a href="contacts/index.html" class="btn hover-animated">
<span class="circle"></span> <span> <span class="lnk">Get Started</span> </span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- <section
class="elementor-section elementor-top-section elementor-element elementor-element-e2d09c8 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="e2d09c8"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-78e08cf" data-id="78e08cf" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-75d8071 elementor-widget elementor-widget-vcard-testimonials"
data-id="75d8071"
data-element_type="widget"
data-widget_type="vcard-testimonials.default"
>
<div class="elementor-widget-container">
<div class="box-inner box-inner--white section">
<h2 class="title title--h title--h3"><span> Testimonials </span></h2>
<div class="swiper-container js-carousel-review" data-swiper-slides-per-view="2">
<div class="swiper-wrapper">
<div class="swiper-slide review-item">
<svg class="avatar avatar--80" viewBox="0 0 84 84">
<g class="avatar__hexagon"><image xlink:href="assets/images/avatar-4-140x140.jpg" height="100%" width="100%" /></g>
</svg>
<h4 class="title title--h5"><span> Tanya Ruiz </span></h4>
<p class="review-item__caption"><span> Felecia was hired to create a corporate identity. We were very pleased with the work done. </span></p>
<div class="quot">
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.62644 6.14163L11.0995 7.02315C11.3631 7.18094 11.4232 7.53679 11.2282 7.77423C9.07599 10.3944 7.12216 13.2357 7.12195 16.7563C10.0635 16.7563 13.0949 19.1512 13.0949 22.2173C13.0949 26.5003 9.61052 29.1677 6.12633 28.6712C2.64214 28.1748 0.58078 25.6925 0.153573 22.7138C-0.826376 15.881 2.98832 9.72814 8.60376 6.14885C8.9145 5.95079 9.31024 5.95241 9.62644 6.14163ZM30.5316 6.14241L32.0046 7.02393C32.2683 7.18172 32.3284 7.53757 32.1333 7.77501C29.9811 10.3951 28.0273 13.2365 28.0271 16.7571C30.9687 16.7571 34 19.152 34 22.2181C34 26.5011 30.5157 29.1685 27.0315 28.672C23.5473 28.1756 21.4859 25.6933 21.0587 22.7146C20.0788 15.8818 23.8935 9.72891 29.5089 6.14963C29.8196 5.95156 30.2154 5.95318 30.5316 6.14241Z"
fill="#0045FF"
/>
</svg>
</div>
</div>
<div class="swiper-slide review-item">
<svg class="avatar avatar--80" viewBox="0 0 84 84">
<g class="avatar__hexagon"><image xlink:href="assets/images/avatar-5-140x140.jpg" height="100%" width="100%" /></g>
</svg>
<h4 class="title title--h5"><span> Thomas Castro </span></h4>
<p class="review-item__caption"><span> Thanks to the skill of Felecia, we have a design that we can be proud of. </span></p>
<div class="quot">
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.62644 6.14163L11.0995 7.02315C11.3631 7.18094 11.4232 7.53679 11.2282 7.77423C9.07599 10.3944 7.12216 13.2357 7.12195 16.7563C10.0635 16.7563 13.0949 19.1512 13.0949 22.2173C13.0949 26.5003 9.61052 29.1677 6.12633 28.6712C2.64214 28.1748 0.58078 25.6925 0.153573 22.7138C-0.826376 15.881 2.98832 9.72814 8.60376 6.14885C8.9145 5.95079 9.31024 5.95241 9.62644 6.14163ZM30.5316 6.14241L32.0046 7.02393C32.2683 7.18172 32.3284 7.53757 32.1333 7.77501C29.9811 10.3951 28.0273 13.2365 28.0271 16.7571C30.9687 16.7571 34 19.152 34 22.2181C34 26.5011 30.5157 29.1685 27.0315 28.672C23.5473 28.1756 21.4859 25.6933 21.0587 22.7146C20.0788 15.8818 23.8935 9.72891 29.5089 6.14963C29.8196 5.95156 30.2154 5.95318 30.5316 6.14241Z"
fill="#0045FF"
/>
</svg>
</div>
</div>
<div class="swiper-slide review-item">
<svg class="avatar avatar--80" viewBox="0 0 84 84">
<g class="avatar__hexagon"><image xlink:href="assets/images/avatar-3-140x140.jpg" height="100%" width="100%" /></g>
</svg>
<h4 class="title title--h5"><span> Jessica Miller </span></h4>
<p class="review-item__caption"><span> Thanks to the skill of Felecia, we have a design that we can be proud of. </span></p>
<div class="quot">
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.62644 6.14163L11.0995 7.02315C11.3631 7.18094 11.4232 7.53679 11.2282 7.77423C9.07599 10.3944 7.12216 13.2357 7.12195 16.7563C10.0635 16.7563 13.0949 19.1512 13.0949 22.2173C13.0949 26.5003 9.61052 29.1677 6.12633 28.6712C2.64214 28.1748 0.58078 25.6925 0.153573 22.7138C-0.826376 15.881 2.98832 9.72814 8.60376 6.14885C8.9145 5.95079 9.31024 5.95241 9.62644 6.14163ZM30.5316 6.14241L32.0046 7.02393C32.2683 7.18172 32.3284 7.53757 32.1333 7.77501C29.9811 10.3951 28.0273 13.2365 28.0271 16.7571C30.9687 16.7571 34 19.152 34 22.2181C34 26.5011 30.5157 29.1685 27.0315 28.672C23.5473 28.1756 21.4859 25.6933 21.0587 22.7146C20.0788 15.8818 23.8935 9.72891 29.5089 6.14963C29.8196 5.95156 30.2154 5.95318 30.5316 6.14241Z"
fill="#0045FF"
/>
</svg>
</div>
</div>
<div class="swiper-slide review-item">
<svg class="avatar avatar--80" viewBox="0 0 84 84">
<g class="avatar__hexagon"><image xlink:href="assets/images/avatar-2-140x140.jpg" height="100%" width="100%" /></g>
</svg>
<h4 class="title title--h5"><span> Daniel Lewis </span></h4>
<p class="review-item__caption"><span> Felecia was hired to create a corporate identity. We were very pleased with the work done. </span></p>
<div class="quot">
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.62644 6.14163L11.0995 7.02315C11.3631 7.18094 11.4232 7.53679 11.2282 7.77423C9.07599 10.3944 7.12216 13.2357 7.12195 16.7563C10.0635 16.7563 13.0949 19.1512 13.0949 22.2173C13.0949 26.5003 9.61052 29.1677 6.12633 28.6712C2.64214 28.1748 0.58078 25.6925 0.153573 22.7138C-0.826376 15.881 2.98832 9.72814 8.60376 6.14885C8.9145 5.95079 9.31024 5.95241 9.62644 6.14163ZM30.5316 6.14241L32.0046 7.02393C32.2683 7.18172 32.3284 7.53757 32.1333 7.77501C29.9811 10.3951 28.0273 13.2365 28.0271 16.7571C30.9687 16.7571 34 19.152 34 22.2181C34 26.5011 30.5157 29.1685 27.0315 28.672C23.5473 28.1756 21.4859 25.6933 21.0587 22.7146C20.0788 15.8818 23.8935 9.72891 29.5089 6.14963C29.8196 5.95156 30.2154 5.95318 30.5316 6.14241Z"
fill="#0045FF"
/>
</svg>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- <section
class="elementor-section elementor-top-section elementor-element elementor-element-3eaeb61 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="3eaeb61"
data-element_type="section"
>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e02d7b9" data-id="e02d7b9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div
class="elementor-element elementor-element-2c964fe elementor-widget elementor-widget-vcard-clients"
data-id="2c964fe"
data-element_type="widget"
data-widget_type="vcard-clients.default"
>
<div class="elementor-widget-container">
<div class="box-inner section">
<h2 class="title title--h title--h3"><span> Clients </span></h2>
<div class="swiper-container js-carousel-clients">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="#" title="Sunshine"> <img src="assets/images/client1-256x123.png" alt="Sunshine" /> </a>
</div>
<div class="swiper-slide">
<a href="#" title="Vs"> <img src="assets/images/client3.png" alt="Vs" /> </a>
</div>
<div class="swiper-slide">
<a href="#" title="Classic"> <img src="assets/images/client2-256x92.png" alt="Classic" /> </a>
</div>
<div class="swiper-slide">
<a href="#" title="Vintage"> <img src="assets/images/client4-256x232.png" alt="Vintage" /> </a>
</div>
<div class="swiper-slide">
<a href="#" title="Sunshine"> <img src="assets/images/client1-256x123.png" alt="Sunshine" /> </a>
</div>
<div class="swiper-slide">
<a href="#" title="Vs"> <img src="assets/images/client3.png" alt="Vs" /> </a>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
</div>
</div>
</div>
</div>
<footer class="footer box-inner box-inner--rounded">© 2022 All Rights Reserved.</footer>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="scroll-line"></div>
<div class="back-to-top"></div>
<svg class="svg-defs">
<clipPath id="avatar-box">
<path
d="M1.85379 38.4859C2.9221 18.6653 18.6653 2.92275 38.4858 1.85453 56.0986.905299 77.2792 0 94 0c16.721 0 37.901.905299 55.514 1.85453 19.821 1.06822 35.564 16.81077 36.632 36.63137C187.095 56.0922 188 77.267 188 94c0 16.733-.905 37.908-1.854 55.514-1.068 19.821-16.811 35.563-36.632 36.631C131.901 187.095 110.721 188 94 188c-16.7208 0-37.9014-.905-55.5142-1.855-19.8205-1.068-35.5637-16.81-36.63201-36.631C.904831 131.908 0 110.733 0 94c0-16.733.904831-37.9078 1.85379-55.5141z"
/>
</clipPath>
<clipPath id="avatar-hexagon">
<path
d="M0 27.2891c0-4.6662 2.4889-8.976 6.52491-11.2986L31.308 1.72845c3.98-2.290382 8.8697-2.305446 12.8637-.03963l25.234 14.31558C73.4807 18.3162 76 22.6478 76 27.3426V56.684c0 4.6805-2.5041 9.0013-6.5597 11.3186L44.4317 82.2915c-3.9869 2.278-8.8765 2.278-12.8634 0L6.55974 68.0026C2.50414 65.6853 0 61.3645 0 56.684V27.2891z"
/>
</clipPath>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-dark-grayscale">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 0.49803921568627" />
<feFuncG type="table" tableValues="0 0.49803921568627" />
<feFuncB type="table" tableValues="0 0.49803921568627" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-grayscale">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-purple-yellow">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-blue-red">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 1" />
<feFuncG type="table" tableValues="0 0.27843137254902" />
<feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-midnight">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0 0" />
<feFuncG type="table" tableValues="0 0.64705882352941" />
<feFuncB type="table" tableValues="0 1" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-magenta-yellow">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.78039215686275 1" />
<feFuncG type="table" tableValues="0 0.94901960784314" />
<feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-purple-green">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" />
<feFuncG type="table" tableValues="0 1" />
<feFuncB type="table" tableValues="0.44705882352941 0.4" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-blue-orange">
<feColorMatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
<feComponentTransfer color-interpolation-filters="sRGB">
<feFuncR type="table" tableValues="0.098039215686275 1" />
<feFuncG type="table" tableValues="0 0.66274509803922" />
<feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" />
<feFuncA type="table" tableValues="1 1" />
</feComponentTransfer>
<feComposite in2="SourceGraphic" operator="in" />
</filter>
</defs>
</svg>
<script type="text/javascript" src="assets/js/dist/vendor/regenerator-runtime.min3937.js?ver=0.13.9" id="regenerator-runtime-js"></script>
<script type="text/javascript" src="assets/js/dist/vendor/wp-polyfill.min2c7c.js?ver=3.15.0" id="wp-polyfill-js"></script>
<script type="text/javascript" id="contact-form-7-js-extra">
var wpcf7 = { api: { root: "", namespace: "contact-form-7\/v1" } };
</script>
<script type="text/javascript" id="elementor-frontend-js-before">
var elementorFrontendConfig = {
environmentMode: { edit: false, wpPreview: false, isScriptDebug: false },
i18n: {
shareOnFacebook: "Share on Facebook",
shareOnTwitter: "Share on Twitter",
pinIt: "Pin it",
download: "Download",
downloadImage: "Download image",
fullscreen: "Fullscreen",
zoom: "Zoom",
share: "Share",
playVideo: "Play Video",
previous: "Previous",
next: "Next",
close: "Close",
},
is_rtl: false,
breakpoints: { xs: 0, sm: 480, md: 768, lg: 1025, xl: 1440, xxl: 1600 },
responsive: {
breakpoints: {
mobile: { label: "Mobile", value: 767, default_value: 767, direction: "max", is_enabled: true },
mobile_extra: { label: "Mobile Extra", value: 880, default_value: 880, direction: "max", is_enabled: false },
tablet: { label: "Tablet", value: 1024, default_value: 1024, direction: "max", is_enabled: true },
tablet_extra: { label: "Tablet Extra", value: 1200, default_value: 1200, direction: "max", is_enabled: false },
laptop: { label: "Laptop", value: 1366, default_value: 1366, direction: "max", is_enabled: false },
widescreen: { label: "Widescreen", value: 2400, default_value: 2400, direction: "min", is_enabled: false },
},
},
version: "3.5.3",
is_static: false,
experimentalFeatures: {
e_dom_optimization: true,
e_optimized_assets_loading: true,
a11y_improvements: true,
e_import_export: true,
e_hidden_wordpress_widgets: true,
"landing-pages": true,
"elements-color-picker": true,
"favorite-widgets": true,
"admin-top-bar": true,
},
urls: { assets: "" },
settings: { page: [], editorPreferences: [] },
kit: {
active_breakpoints: ["viewport_mobile", "viewport_tablet"],
global_image_lightbox: "yes",
lightbox_enable_counter: "yes",
lightbox_enable_fullscreen: "yes",
lightbox_enable_zoom: "yes",
lightbox_enable_share: "yes",
lightbox_title_src: "title",
lightbox_description_src: "description",
},
post: { id: 39, title: "Portfolio", excerpt: "", featuredImage: false },
};
</script>
<script defer src="assets/js/autoptimize_fd0a3d216f66d6d89fc6f15e1fe29311.js"></script>
</body>
</html>