-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-style2.html
1218 lines (1102 loc) · 44.5 KB
/
index-style2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<!--
Website By Miradontsoa / MiVFX
http://twitter.com/miradontsoa
http://miradontsoa.com
-->
<html class="no-js" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- Page Title Here -->
<title>Casely - A portfolio / onepage template</title>
<!-- Meta -->
<!-- Page Description Here -->
<meta name="description" content="A beautiful and creative portfolio template. It is mobile friend (responsive) and comes with smooth animations">
<!-- Disable screen scaling-->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, user-scalable=0">
<!-- Twitter Meta -->
<meta name="twitter:site" content="@miradontsoa">
<meta name="twitter:creator" content="@miradontsoa">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Description of the page">
<meta name="twitter:image" content="/img/bg-default.jpg">
<!-- Facebook Meta -->
<meta property="og:url" content="your website url here">
<meta property="og:title" content="Page Title">
<meta property="og:description" content="Description of the page">
<meta property="og:type" content="website">
<meta property="og:image" content="/img/bg-default.jpg">
<meta property="og:image:secure_url" content="/img/bg-default.jpg">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<!-- Web fonts and Web Icons -->
<link rel="stylesheet" href="./fonts/opensans/stylesheet.css">
<link rel="stylesheet" href="./fonts/bebas/stylesheet.css">
<link rel="stylesheet" href="./fonts/ionicons.min.css">
<link rel="stylesheet" href="./fonts/font-awesome.min.css">
<!-- Vendor CSS style -->
<link rel="stylesheet" href="./css/pageloader.css">
<!-- Uncomment below to load individualy vendor CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./js/vendor/swiper.min.css">
<link rel="stylesheet" href="./js/vendor/jquery.fullpage.min.css">
<link rel="stylesheet" href="./js/vegas/vegas.min.css">
<!-- Main CSS files -->
<link rel="stylesheet" href="./css/main.css">
<!-- add alt layout here -->
<link rel="stylesheet" href="./css/style-color2.css">
<script src="./js/vendor/modernizr-2.7.1.min.js"></script>
</head>
<body id="menu" class="body-page">
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Page Loader : just comment these lines to remove it -->
<div class="page-loader" id="page-loader">
<div>
<div class="icon ion-spin"></div>
<p>loading</p>
</div>
</div>
<!-- BEGIN OF site header Menu -->
<header class="page-header navbar page-header-alpha scrolled-white menu-right topmenu-right">
<!-- Begin of menu icon toggler -->
<button class="navbar-toggler site-menu-icon" id="navMenuIcon">
<!-- Available class : menu-icon-dot / menu-icon-thick /menu-icon-random -->
<span class="menu-icon menu-icon-normal">
<span class="bars">
<span class="bar1"></span>
<span class="bar2"></span>
<span class="bar3"></span>
</span>
</span>
</button>
<!-- End of menu icon toggler -->
<!-- Begin of logo/brand -->
<a class="navbar-brand" href="./#">
<span class="logo">
<img class="light-logo" src="img/logo.png" alt="Logo">
</span>
<span class="text">
<span class="line">Casely</span>
<span class="line sub">Portfolio Template</span>
</span>
</a>
<!-- End of logo/brand -->
<!-- begin of menu wrapper -->
<div class="all-menu-wrapper" id="navbarMenu">
<!-- Begin of top menu -->
<nav class="navbar-topmenu">
<!-- Begin of CTA Actions, & Icons menu -->
<!-- <ul class="navbar-nav navbar-nav-actions">
<li class="nav-item">
<a class="btn btn-outline-white btn-round" target="_blank" href="https://themeforest.net/user/mivfx/portfolio">
Buy Now
</a>
</li>
</ul> -->
<!-- End of CTA & Icons menu -->
</nav>
<!-- End of top menu -->
<!-- Begin of hamburger mainmenu menu -->
<nav class="navbar-mainmenu">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="./index-style2.html#home">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./gallery-style2.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./item-style2.html">Item</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./demo.html">Demo</a>
</li>
</ul>
</nav>
<!-- End of hamburger mainmenu menu -->
</div>
<!-- end of menu wrapper -->
</header>
<!-- END OF site header Menu-->
<!-- BEGIN OF page cover -->
<div class="page-cover" id="parallax-cover">
<!-- Transluscent mask as filter -->
<div class="cover-bg-mask bg-color" data-bgcolor="#1D1D1D"></div>
</div>
<!--END OF page cover -->
<!-- BEGIN OF page main content -->
<main class="page-main page-fullpage main-anim" id="mainpage">
<!-- Begin of home section -->
<div class="section section-home fullscreen-md fp-auto-height-responsive main-home section-centered"
data-section="home">
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin v-center">
<!-- content -->
<div class="section-content anim">
<div class="row">
<div class="col-12 col-lg-6 text-left">
<!-- title and description -->
<div class="title-desc">
<h1 class="display-4 display-title home-title decor anim-1">Ahmad Hussein</h1>
<!-- <h4 class="anim-2">Hello, we build things</h4>
<p class="anim-2">This is a Bootstrap 4 based template, helping you to build modern
and beautiful websites</p> -->
<h4 class="anim-2">I'm actually a simple PERSON as it turns out!</h4>
</div>
<!-- Action button -->
<div class="btns-action anim-3">
<a class="btn btn-circicon btn-primary" href="#about">
<span class="icon">
<i class="ion ion-chevron-down"></i>
</span>
<span class="text">About</span>
</a>
</div>
</div>
</div>
</div>
<div class="section-aside aside-bottom">
<div class="text-right">
</div>
<!-- Action button -->
<div class="btns-action anim-3 text-right">
<a class="btn btn-outline-white btn-round" href="#contact">
Contact
</a>
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">Scroll Down</span>
</a>
</footer>
</div>
<!-- End of section wrapper -->
</div>
<!-- End of home section -->
<!-- Begin of description section -->
<div class="section section-description fp-auto-height-responsive " data-section="about">
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin">
<!-- content -->
<div class="section-content anim">
<div class="row">
<div class="col-12 col-md-6 text-left">
<!-- title and description -->
<div class="title-desc">
<h1 class="display-4 display-title anim-1">About</h1>
<h4 class="anim-2">We build things</h4>
<p class="anim-2">This describes what we do and what is our mission. At right you can
see the awesome people behind. Lorem ipsum magicum dolor sit amet,
consectetur adipiscing elit. Maecenas a sem ultrices neque vehicula
fermentum a sit amet nulla.
</p>
</div>
<!-- Action button -->
<div class="btns-action anim-3">
<a class="btn btn-circicon btn-primary" href="#projects-featured">
<span class="icon">
<i class="ion ion-chevron-down"></i>
</span>
<span class="text">Selected Works</span>
</a>
</div>
</div>
</div>
</div>
<!-- aside -->
<div class="section-aside aside-bottom anim small-relative">
<div class="a-wrapper anim-4">
<!-- begin of slider carousel-swiper-alpha -->
<div class="slider-wrapper carousel-swiper-alpha carousel-swiper-alpha-demo">
<!-- slider -->
<div class="slider-container swiper-container">
<ul class="item-list swiper-wrapper">
<!-- item -->
<li class="slide-item swiper-slide">
<div class="item-wrapper">
<div class="illustr">
<img src="img/items/img-people1.jpg" alt="Image" class="img">
</div>
<div class="legend">
<h3 class="title">Geraldine Cyclone</h3>
<h4>Senior Designer</h4>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</li>
<!-- item -->
<li class="slide-item swiper-slide">
<div class="item-wrapper">
<div class="illustr">
<img src="img/items/img-people2.jpg" alt="Image" class="img">
</div>
<div class="legend">
<h3 class="title">Jerome Levier</h3>
<h4>Developer</h4>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</li>
<!-- item -->
<li class="slide-item swiper-slide">
<div class="item-wrapper">
<div class="illustr">
<img src="img/items/img-people3.jpg" alt="Image" class="img">
</div>
<div class="legend">
<h3 class="title">Nicole Florence</h3>
<h4>Architect</h4>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</li>
<!-- item -->
<li class="slide-item swiper-slide">
<div class="item-wrapper">
<div class="illustr">
<img src="img/items//img-people4.jpg" alt="Image" class="img">
</div>
<div class="legend">
<h3 class="title">Tintin Dupon</h3>
<h4>Photograph</h4>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</li>
</ul>
</div>
<!-- pagination -->
<div class="items-pagination bar"></div>
</div>
<!-- end of slider carousel-swiper-alpha -->
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">Works</span>
</a>
</footer>
</div>
<!-- End of section wrapper -->
</div>
<!-- End of description section -->
<!-- Begin of slider section -->
<div class="section section-twoside project-slider fp-auto-height-responsive " data-section="projects-featured">
<div class="slide">
<div class="slide-wrapper">
<div class="item-wrapper">
<div class="illustr">
<img class="img img-block" src="img/items/img-sample1.jpg" alt="Image">
</div>
<div class="legend">
<a href="item-style2.html#project_url">
<h3>Paper Design</h3>
<h4>Art / Print</h4>
<p>Lorem ipsum magicum dolor sit amet, consectetur adipiscing elit.
Maecenas a sem ultrices neque vehicula fermentum a sit amet nulla.</p>
</a>
<a class="btn btn-transp-arrow btn-primary" href="item-style2.html#project_url">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="slide-wrapper">
<div class="item-wrapper">
<div class="illustr">
<img class="img img-block" src="img/items/img-sample2.jpg" alt="Image">
</div>
<div class="legend">
<a href="item-style2.html#project_url">
<h3>Fire Cloud</h3>
<h4>Photography / App</h4>
<p>Lorem ipsum magicum dolor sit amet, consectetur adipiscing elit.
Maecenas a sem ultrices neque vehicula fermentum a sit amet nulla.</p>
</a>
<a class="btn btn-transp-arrow btn-primary" href="item-style2.html#project_url">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="slide">
<div class="slide-wrapper">
<div class="item-wrapper">
<div class="illustr">
<img class="img img-block" src="img/items/img-sample4.jpg" alt="Image">
</div>
<div class="legend">
<a href="item-style2.html#project_url">
<h3>Summer Scape</h3>
<h4>Photography</h4>
<p>Lorem ipsum magicum dolor sit amet, consectetur adipiscing elit.
Maecenas a sem ultrices neque vehicula fermentum a sit amet nulla.</p>
</a>
<a class="btn btn-transp-arrow btn-primary" href="item-style2.html#project_url">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
<div class="icons">
<a class="icon-btn" href="#">
<i class="icon fa fa-instagram"></i>
</a>
<a class="icon-btn" href="#">
<i class="icon fa fa-twitter"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">All Works</span>
</a>
</footer>
</div>
<!-- End of slider section -->
<!-- Begin of list projects section -->
<div class="section section-list-feature fp-auto-height-responsive " data-section="projects">
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin">
<!-- content -->
<div class="section-content anim">
<div class="row">
<div class="col-12 col-lg-6 text-left">
<!-- title and description -->
<div class="title-desc">
<h2 class="display-4 display-title anim-1">Projects</h2>
<p class="anim-2">List of our projects. Lorem ipsum magicum dolor sit amet, consectetur
adipiscing elit. Maecenas a sem ultrices neque vehicula fermentum
a sit amet nulla.
</p>
</div>
</div>
</div>
<!-- project list -->
<div class="project-list grid-1 grid-md-2 grid-lg-3 anim-list">
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample9-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample10-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample11-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample12-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample13-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media media-project">
<div class="media-img">
<img class="" src="img/items/img-sample14-square.jpg" alt="An image">
</div>
<div class="media-body">
<a href="item-style2.html#project_url">
<h4>E-learning</h4>
<h3>Coding Course</h3>
<p class="price">$12</p>
</a>
</div>
<div class="media-footer">
<a class="btn btn-transp-arrow btn-primary" href="item.html">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">Services</span>
</a>
</footer>
</div>
<!-- End of section wrapper -->
</div>
<!-- End of list projects section -->
<!-- Begin of list feature section -->
<div class="section section-list-feature fp-auto-height-responsive " data-section="services">
<!-- section cover -->
<div class="section-cover-full bg-img" data-image-src="./img/sections/services.png">
</div>
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin">
<!-- content -->
<div class="section-content anim">
<div class="row">
<div class="col-12 col-lg-6 text-left">
<!-- title and description -->
<div class="title-desc">
<h2 class="display-4 display-title anim-1">Services</h2>
<p class="anim-2">List of our services. Lorem ipsum magicum dolor sit amet, consectetur
adipiscing elit. Maecenas a sem ultrices neque vehicula fermentum
a sit amet nulla.
</p>
</div>
</div>
</div>
<!-- service list -->
<div class="service-list grid-1 grid-md-2 grid-lg-4 anim-list decor">
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-code-working"></i>
</div>
<div class="media-body">
<h4>Coding</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-cog-outline"></i>
</div>
<div class="media-body">
<h4>Mechanics</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-analytics-outline"></i>
</div>
<div class="media-body">
<h4>Analytics</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-grid-view-outline"></i>
</div>
<div class="media-body">
<h4>Design</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-albums-outline"></i>
</div>
<div class="media-body">
<h4>Painting</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-camera-outline"></i>
</div>
<div class="media-body">
<h4>Photogramhy</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-cloud-outline"></i>
</div>
<div class="media-body">
<h4>Hosting</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
<!-- an item -->
<div class="item media">
<div class="img">
<i class="icon ion-ios-game-controller-a-outline"></i>
</div>
<div class="media-body">
<h4>Entertainment</h4>
<p>An awesome service that we offer to you. This is just a placeholder
text.</p>
<a class="btn btn-transp-arrow btn-primary" href="">
<span class="text">Details</span>
<span class="icon arrow-right"></span>
</a>
</div>
</div>
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">Projects</span>
</a>
</footer>
</div>
<!-- End of section wrapper -->
</div>
<!-- End of list feature section -->
<!-- Begin of list products section -->
<div class="section section-grid fp-auto-height-responsive " data-section="products">
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin">
<div class="section-content mb-3">
<div class="row">
<div class="col-12 col-lg-6 text-left">
<!-- title and description -->
<div class="title-desc">
<h2 class="display-4 display-title anim-1">Products</h2>
<p class="anim-2">List of products. Lorem ipsum magicum dolor sit amet, consectetur
adipiscing elit. Maecenas a sem ultrices neque vehicula fermentum
a sit amet nulla.
</p>
</div>
</div>
</div>
</div>
<!-- Begin of item list -->
<div class="section-content row justify-content-between">
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim translateUp">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample5.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="decor">
<strong>Fish Game</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample6.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="display-normal">
<strong>Bird App</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim translateDown">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample7.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="display-normal">
<strong>Photo App</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim translateUp">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample8.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="display-normal">
<strong>Painting</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample9.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="display-normal">
<strong>Software</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
<!-- item -->
<div class="col-12 col-sm-6 col-lg-4 center-vh">
<div class="section-content anim translateDown">
<div class="images text-center">
<div class="img-frame-normal">
<div class="img-1 shadow">
<a href="item-style2.html#project_url">
<img class="img" src="img/items/img-sample10.jpg" alt="Image">
</a>
<span class="price bottom">
$39.99
</span>
</div>
<div class="legend text-center decor">
<h3 class="display-normal">
<strong>Home Decoration</strong>
</h3>
<p>This is just a placeholder text.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of item list -->
</div>
<!-- End of section wrapper -->
</div>
<!-- End of list products section -->
<!-- Begin of register/login/signin section -->
<div class="section section-register fp-auto-height-responsive " data-section="register">
<!-- section cover -->
<div class="section-cover-full bg-img" data-image-src="./img/sections/register.png">
</div>
<!-- Begin of section wrapper -->
<div class="section-wrapper fullwidth with-margin">
<!-- content -->
<div class="section-content anim">
<div class="row">
<div class="col-12 col-md-12 col-lg-5">
<!-- Registration form container-->
<form class="send_email_form form-container form-container-transparent form-container-white"
method="post" action="ajaxserver/serverfile.php">
<div class="form-desc">
<h2 class="display-4 display-title anim-2">Subscribe</h2>
<p class="invite anim-3">Don't miss any new opportunity, Hurry up! register now :</p>
</div>
<div class="form-input anim-4">
<div class="form-group form-success-gone">
<label for="reg-email">Email</label>
<input id="reg-email" name="email" class="form-control-line form-control-white" type="email"
required placeholder="[email protected]" data-validation-type="email"