-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_backup.html
2130 lines (2063 loc) · 90.1 KB
/
index_backup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Title here -->
<title>Organeek</title>
<!-- Description, Keywords and Author -->
<meta name="description" content="Your description">
<meta name="keywords" content="Your,Keywords">
<meta name="author" content="ResponsiveWebInc">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Styles -->
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- SLIDER REVOLUTION 4.x CSS SETTINGS -->
<link href="css/settings.css" rel="stylesheet">
<!-- FlexSlider Css -->
<link rel="stylesheet" href="css/flexslider.css" media="screen" />
<!-- Portfolio CSS -->
<link href="css/prettyPhoto.css" rel="stylesheet">
<!-- Font awesome CSS -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Custom Less -->
<link href="css/less-style.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Rancho' rel='stylesheet' type='text/css'>
<!--[if IE]><link rel="stylesheet" href="css/ie-style.css"><![endif]-->
<!-- Favicon -->
<link rel="shortcut icon" href="#">
</head>
<body>
<!-- Shopping cart Modal -->
<div class="modal fade" id="shoppingcart1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Shopping Cart</h4>
</div>
<div class="modal-body">
<!-- Items table -->
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">Exception Reins Evocative</a></td>
<td>2</td>
<td>$200</td>
</tr>
<tr>
<td><a href="#">Taut Mayoress Alias Appendicitis</a></td>
<td>1</td>
<td>$190</td>
</tr>
<tr>
<td><a href="#">Sinter et Molests Perfectionist</a></td>
<td>4</td>
<td>$99</td>
</tr>
<tr>
<th></th>
<th>Total</th>
<th>P489</th>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Continue Shopping</button>
<button type="button" class="btn btn-info">Checkout</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!-- Model End -->
<!-- Page Wrapper -->
<div class="wrapper">
<!-- Header Start -->
<div class="header">
<div class="container">
<!-- Header top area content -->
<div class="header-top">
<div class="row">
<div class="col-md-4 col-sm-4">
<!-- Header top left content contact -->
<div class="header-contact">
<!-- Contact number -->
<a href="contact.html"> Contact Us</a> |
<a href="general.html"> About Us</a>
</div>
</div>
<div class="col-md-4 col-sm-4">
<!-- Header top right content search box -->
<div class=" header-search">
<form class="form" role="form">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<button class="btn btn-default" type="button"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
<div class="col-md-4 col-sm-4">
<!-- Button Kart -->
<div class="btn-cart-md">
<a class="cart-link" href="#">
<!-- Image -->
<img class="img-responsive" src="img/cart.png" alt="" />
<!-- Heading -->
<h4>Shopping Cart</h4>
<span>3 items P489/-</span>
<div class="clearfix"></div>
</a>
<ul class="cart-dropdown" role="menu">
<li>
<!-- Cart items for shopping list -->
<div class="cart-item">
<!-- Item remove icon -->
<a href="#"><i class="fa fa-times"></i></a>
<!-- Image -->
<img class="img-responsive img-rounded" src="img/nav-menu/nav1.jpg" alt="" />
<!-- Title for purchase item -->
<span class="cart-title"><a href="#">Exception Reins Evocative</a></span>
<!-- Cart item price -->
<span class="cart-price pull-right red">$200/-</span>
<div class="clearfix"></div>
</div>
</li>
<li>
<!-- Cart items for shopping list -->
<div class="cart-item">
<!-- Item remove icon -->
<a href="#"><i class="fa fa-times"></i></a>
<!-- Image -->
<img class="img-responsive img-rounded" src="img/nav-menu/nav2.jpg" alt="" />
<!-- Title for purchase item -->
<span class="cart-title"><a href="#">Taut Mayoress Alias Appendicitis</a></span>
<!-- Cart item price -->
<span class="cart-price pull-right red">$190/-</span>
<div class="clearfix"></div>
</div>
</li>
<li>
<!-- Cart items for shopping list -->
<div class="cart-item">
<!-- Item remove icon -->
<a href="#"><i class="fa fa-times"></i></a>
<!-- Image -->
<img class="img-responsive img-rounded" src="img/nav-menu/nav3.jpg" alt="" />
<!-- Title for purchase item -->
<span class="cart-title"><a href="#">Sinter et Molests Perfectionist</a></span>
<!-- Cart item price -->
<span class="cart-price pull-right red">$99/-</span>
<div class="clearfix"></div>
</div>
</li>
<li>
<!-- Cart items for shopping list -->
<div class="cart-item">
<a class="btn btn-danger" data-toggle="modal" href="#shoppingcart1">Checkout</a>
</div>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-5">
<!-- Link -->
<a href="index.html">
<!-- Logo area -->
<div class="logo">
<img class="img-responsive" src="img/logo/ologo2.png" alt="Organeek"/>
<!-- Heading
<h1>Organeek</h1>-->
<!-- Paragraph -->
<p>Celebrating Beauty & Wellness</p>
</div>
</a>
</div>
<div class="col-md-8 col-sm-7">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-right" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html"><img src="img/nav-menu/nav1.jpg" class="img-responsive" alt="" />Home</a></li>
<li class="dropdown hidden-xs">
<a href="beauty.html" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/beauty.jpg" class="img-responsive" alt="" /> Beauty <b class="caret"></b></a>
<ul class="dropdown-menu dropdown-md">
<li>
<div class="row">
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Recipe</h3>
<!-- Image -->
<img src="img/nav-menu/beautyrecipe.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>Easy-to-follow beauty recipes sans harsh chemicals</p>
<!-- Button -->
<a href="recipe-list/beauty.php" class="btn btn-danger btn-xs">View Menu</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Blog</h3>
<!-- Image -->
<img src="img/nav-menu/beautyblog.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>All you need to know about beauty-related topics</p>
<!-- Button -->
<a href="blog/beauty.php" class="btn btn-danger btn-xs">View Menu</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Regimen</h3>
<!-- Image -->
<img src="img/nav-menu/beautyregimen.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>Sure guide to achieve and maintain beauty</p>
<!-- Button -->
<a href="0-base.html" class="btn btn-danger btn-xs">View Menu</a>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown hidden-xs">
<a href="wellness.html" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/wellness.jpg" class="img-responsive" alt="" /> Wellness <b class="caret"></b></a>
<ul class="dropdown-menu dropdown-md">
<li>
<div class="row">
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Recipe</h3>
<!-- Image -->
<img src="img/nav-menu/wellnessrecipe.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>Simple & environmental-friendly recipe that will not blow your budget away</p>
<!-- Button -->
<a href="recipe-list/wellness.php" class="btn btn-danger btn-xs">View Recipe</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Blog</h3>
<!-- Image -->
<img src="img/nav-menu/wellnessblog.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>All you need to know about wellness-related topics</p>
<!-- Button -->
<a href="blog/wellness.php" class="btn btn-danger btn-xs">View Blog</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Regimen</h3>
<!-- Image -->
<img src="img/nav-menu/wellnessregimen.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>Step-by-step guide to achieve healthy lifestyle</p>
<!-- Button -->
<a href="0-base.html" class="btn btn-danger btn-xs">View Regimen</a>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown hidden-xs">
<a href="naturalhome.html" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/naturalhome.jpg" class="img-responsive" alt="" /> House <b class="caret"></b></a>
<ul class="dropdown-menu dropdown-md">
<li>
<div class="row">
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Recipe</h3>
<!-- Image -->
<img src="img/nav-menu/homerecipe.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>Easy-to-follow recipes that will not blow your budget away</p>
<!-- Button -->
<a href="recipe-list/naturalhome.php" class="btn btn-danger btn-xs">View Recipe</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<!-- Menu Item -->
<div class="menu-item">
<!-- Heading -->
<h3>Blog</h3>
<!-- Image -->
<img src="img/nav-menu/homeblog.jpg" class="img-responsive" alt="" />
<!-- Paragraph -->
<p>All you need to know about natural home-related topics</p>
<!-- Button -->
<a href="blog.naturalhome.php" class="btn btn-danger btn-xs">View Blog</a>
</div>
</div>
</div>
</li>
</ul>
</li>
<li class="dropdown">
<a href="ingredients.php" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/ingredients.jpg" class="img-responsive" alt="" /> Ingredients <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="ingredients.php">Active Ingredients</a></li>
<li><a href="ingredients.php">Clay</a></li>
<li><a href="ingredients.php">Condiments</a></li>
<li><a href="ingredients.php">Dairy Products</a></li>
<li><a href="ingredients.php">Fermented Products</a></li>
<li><a href="ingredients.php">Fruits</a></li>
<li><a href="ingredients.php">Honey Products</a></li>
<li><a href="ingredients.php">Oil & Extract</a></li>
<li><a href="ingredients.php">Seeds & Grains</a></li>
<li><a href="ingredients.php">Spices</a></li>
<li><a href="ingredients.php">Tea</a></li>
<li><a href="ingredients.php">Veggies</a></li>
</ul>
</li>
<li class="dropdown">
<a href="recipe-list.php" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/recipe.jpg" class="img-responsive" alt="" /> Recipe <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="recipe-list.php">All</a></li>
<li><a href="recipe-list.php">Body & Skin</a></li>
<li><a href="recipe-list.php">Face Care</a></li>
<li><a href="recipe-list.php">Hair Care</a></li>
<li><a href="recipe-list.php">Oral Care</a></li>
<li><a href="recipe-list.php">Personal Hygiene</a></li>
<li><a href="recipe-list.php">Wellness</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><img src="img/nav-menu/shop.jpg" class="img-responsive" alt="" /> Shop <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="items.html">Shopping</a></li>
<li><a href="item-single.html">Order Now</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</div>
</div>
</div> <!-- / .container -->
</div>
<!-- Header End -->
<!-- Slider Start
#################################
- THEMEPUNCH BANNER -
################################# -->
<div class="tp-banner-container">
<div class="tp-banner" >
<ul> <!-- SLIDE -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500" >
<!-- MAIN IMAGE -->
<img src="img/slider/slide08.jpg" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption lfl largeblackbg br-red"
data-x="20"
data-y="100"
data-speed="1500"
data-start="1200"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3">Promoting...
</div>
<!-- LAYER NR. 2.0 -->
<div class="tp-caption lfl medium_bg_darkblue br-green"
data-x="20"
data-y="200"
data-speed="1500"
data-start="1800"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power4.easeIn"
data-captionhidden="off">Beauty...
</div>
<!-- LAYER NR. 2.1 -->
<div class="tp-caption lfl medium_bg_darkblue br-lblue"
data-x="20"
data-y="250"
data-speed="1500"
data-start="2100"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3">Wellness...
</div>
<!-- LAYER NR. 2.2 -->
<div class="tp-caption lfl medium_bg_darkblue br-purple"
data-x="20"
data-y="300"
data-speed="1500"
data-start="2400"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3">Natural Home &
</div>
<!-- LAYER NR. 2.3 -->
<div class="tp-caption lfl medium_bg_darkblue br-orange"
data-x="20"
data-y="350"
data-speed="1500"
data-start="2700"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3">Inspiration...
</div>
<!-- LAYER NR. 3.0 -->
<div class="tp-caption customin customout"
data-x="right" data-hoffset="-50"
data-y="100"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="400"
data-start="3600"
data-easing="Power3.easeInOut"
data-endspeed="300"
style="z-index: 5"><img class="slide-img img-responsive" src="img/slider/slide.jpg" alt="" />
</div>
<!-- LAYER NR. 3.1 -->
<div class="tp-caption customin customout"
data-x="right" data-hoffset="-120"
data-y="130"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="400"
data-start="3900"
data-easing="Power3.easeInOut"
data-endspeed="300"
style="z-index: 6"><img class="slide-img img-responsive" src="img/slider/slide6.jpg" alt="" />
</div>
<!-- LAYER NR. 3.2 -->
<div class="tp-caption customin customout"
data-x="right" data-hoffset="-10"
data-y="160"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="400"
data-start="4200"
data-easing="Power3.easeInOut"
data-endspeed="300"
style="z-index: 7"><img class="slide-img img-responsive" src="img/slider/slide1.jpg" alt="" />
</div>
<!-- LAYER NR. 3.3 -->
<div class="tp-caption customin customout"
data-x="right" data-hoffset="-80"
data-y="190"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="400"
data-start="4500"
data-easing="Power3.easeInOut"
data-endspeed="300"
style="z-index: 8"><img class="slide-img img-responsive" src="img/slider/slide5.jpg" alt="" />
</div>
</li>
<li data-transition="zoomin" data-slotamount="6" data-masterspeed="400" >
<!-- MAIN IMAGE -->
<img src="img/slider/transparent.png" style="background-color:#fff" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption sfl modern_medium_light"
data-x="20"
data-y="90"
data-speed="800"
data-start="1000"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3"> Celebrating Beauty & Wellness
</div>
<!-- LAYER NR. 1.1 -->
<div class="tp-caption large_bold_grey heading customin customout"
data-x="10"
data-y="125"
data-splitin="chars"
data-splitout="chars"
data-elementdelay="0.05"
data-start="1500"
data-speed="900"
data-easing="Back.easeOut"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-endspeed="500"
data-endeasing="Power3.easeInOut"
data-captionhidden="on"
style="z-index:5">Organeek
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption customin customout"
data-x="right"
data-y="100"
data-customin="x:50;y:150;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.5;scaleY:0.5;skewX:0;skewY:0;opacity:0;transformPerspective:0;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="800"
data-start="2000"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3"><img class="img-responsive" src="img/slider/tr3.png" alt="" />
</div>
<!-- LAYER NR. 2.1 -->
<div class="tp-caption customin customout"
data-x="right"
data-y="100"
data-customin="x:50;y:150;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.5;scaleY:0.5;skewX:0;skewY:0;opacity:0;transformPerspective:0;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="800"
data-start="2300"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3"><img class="img-responsive" src="img/slider/tr2.png" alt="" />
</div>
<!-- LAYER NR. 2.2 -->
<div class="tp-caption customin customout"
data-x="right"
data-y="100"
data-customin="x:50;y:150;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.5;scaleY:0.5;skewX:0;skewY:0;opacity:0;transformPerspective:0;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="800"
data-start="2600"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3"><img class="img-responsive" src="img/slider/tr1.png" alt="" />
</div>
<!-- LAYER NR. 2.3 -->
<div class="tp-caption sft"
data-x="right" data-hoffset="-400"
data-y="80"
data-speed="1000"
data-start="3000"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 10"><span class="price-tag br-white">10%<br />Off</span>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption finewide_verysmall_white_mw paragraph customin customout tp-resizeme"
data-x="20"
data-y="210"
data-customin="x:0;y:50;z:0;rotationX:-120;rotationY:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 0%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="1000"
data-start="3600"
data-easing="Power3.easeInOut"
data-splitin="lines"
data-splitout="lines"
data-elementdelay="0.2"
data-endelementdelay="0.08"
data-endspeed="300"
style="z-index: 10; max-width: auto; max-height: auto; white-space: nowrap;"> Pamper yourself with Organeek's sinfully luscious skin care recipes and products sans harmful chemical! Receive all the latest updates in Organeek by 2-easy steps!
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption sfb"
data-x="20"
data-y="335"
data-speed="800"
data-start="4500"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 11"><a class="btn btn-danger" href="#">Subscribe</a>
</div>
</li>
<li data-transition="slidehorizontal" data-slotamount="1" data-masterspeed="600" >
<!-- MAIN IMAGE -->
<img src="img/slider/transparent.png" style="background-color:#8ace19" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat">
<!-- LAYERS NR. 1 -->
<div class="tp-caption lfl"
data-x="left"
data-y="100"
data-speed="800"
data-start="1200"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Linear.easeNone"
data-captionhidden="off"><img class="img-responsive" src="img/slider/kefir.png" alt="" />
</div>
<!-- LAYERS NR. 2 -->
<div class="tp-caption lfr large_bold_grey heading white"
data-x="right" data-hoffset="-10"
data-y="120"
data-speed="800"
data-start="2000"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Linear.easeNone"
data-captionhidden="off">Organeek Kefir
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption whitedivider3px customin customout tp-resizeme"
data-x="right" data-hoffset="-20"
data-y="210" data-voffset="0"
data-customin="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="700"
data-start="2300"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="500"
style="z-index: 3; max-width: auto; max-height: auto; white-space: nowrap;">
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption finewide_medium_white randomrotate customout tp-resizeme"
data-x="right" data-hoffset="-10"
data-y="245" data-voffset="0"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="1000"
data-start="2700"
data-easing="Power3.easeInOut"
data-splitin="chars"
data-splitout="chars"
data-elementdelay="0.08"
data-endelementdelay="0.08"
data-endspeed="500"
style="z-index: 4; max-width: auto; max-height: auto; white-space: nowrap;">Water & Milk
</div>
<!-- LAYER NR. 5 -->
<div class="tp-caption finewide_verysmall_white_mw white customin customout tp-resizeme text-right paragraph"
data-x="right" data-hoffset="-10"
data-y="300"
data-customin="x:0;y:50;z:0;rotationX:-120;rotationY:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 0%;"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0;scaleY:0;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="1000"
data-start="3500"
data-easing="Power3.easeInOut"
data-splitin="lines"
data-splitout="lines"
data-elementdelay="0.2"
data-endelementdelay="0.08"
data-endspeed="300"
style="z-index: 10; max-width: auto; max-height: auto; white-space: nowrap;">Drinking soda has never been morea healthy!<br/> Enjoy refreshing drink of Water Kefir this summer! <br/> Share Kefir with your family with these simple steps...
</div>
</li>
<li data-transition="cube" data-slotamount="7" data-masterspeed="600" >
<!-- MAIN IMAGE -->
<img src="img/slider/mainslide1.jpg" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat">
<!-- LAYERS NR. 1 -->
<div class="tp-caption lfl"
data-x="110"
data-y="130"
data-speed="800"
data-start="1500"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power4.easeIn"
data-captionhidden="off"><img src="img/slider/s31.png" class="img-responsive" alt="" />
</div>
<!-- LAYERS NR. 2 -->
<div class="tp-caption lfl"
data-x="80"
data-y="265"
data-speed="800"
data-start="2200"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power4.easeIn"
data-captionhidden="off"><img src="img/slider/s33.png" class="img-responsive" alt="" />
</div>
<!-- LAYERS NR. 3 -->
<div class="tp-caption lfl"
data-x="450"
data-y="312"
data-speed="800"
data-start="2700"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power4.easeIn"
data-captionhidden="off"><img src="img/slider/s34.png" class="img-responsive" alt="" />
</div>
<!-- LAYERS NR. 4 -->
<div class="tp-caption sfr thinheadline_dark white"
data-x="right" data-hoffset="-10"
data-y="90"
data-speed="800"
data-start="3200"
data-easing="Power4.easeOut"
data-endspeed="500"
data-endeasing="Power4.easeIn"
style="z-index: 3">Online
</div>
<!-- LAYERS NR. 4.1 -->
<div class="tp-caption lfr largepinkbg br-green"
data-x="right" data-hoffset="-10"
data-y="135"
data-speed="800"
data-start="3500"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Linear.easeNone"
data-captionhidden="off">Daily Regimen
</div>
<!-- LAYERS NR. 5 -->
<div class="tp-caption skewfromright medium_text text-right paragraph"
data-x="right" data-hoffset="-10"
data-y="225"
data-speed="800"
data-start="3800"
data-easing="Power4.easeOut"
data-endspeed="400"
data-endeasing="Power4.easeOut"
data-captionhidden="off">Your daily guide for a more beautiful and healthier you!<br />praese delen itieos etconsectetur atque corrupti<br />praese etntiumder delen itierrupti.
</div>
<!-- LAYERS NR. 6 // -->
<div class="tp-caption lfr modern_big_redbg br-red"
data-x="right"
data-hoffset="-10"
data-y="315"
data-speed="1500"
data-start="4100"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Linear.easeNone"
data-captionhidden="off">Desktop or Laptop
</div>
<!-- LAYERS NR. 6.1 // -->
<div class="tp-caption lfr modern_big_redbg br-yellow"
data-x="right"
data-hoffset="-10"
data-y="375"
data-speed="1500"
data-start="4400"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Linear.easeNone"
data-captionhidden="off">Tablet or Phone
</div>
</li>
</ul>
<!-- Banner Timer -->
<div class="tp-bannertimer"></div>
</div>
</div>
<!-- Slider End -->
<!-- Dishes Start -->
<div class="dishes padd">
<div class="container">
<!-- Default Heading -->
<div class="default-heading">
<!-- Crown image -->
<img class="img-responsive" src="img/logo/logo.png" alt="" />
<!-- Heading -->
<h2>Recipe</h2>
<!-- Paragraph -->
<p>Only the most natural, environment-friendly & cost-effective recipe to a healthier lifestyle! Making your own skin care products has never been this easy and cheap!</p>
<!-- Border -->
<div class="border"></div>
</div>
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/face.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list/face.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Recipe Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Face Care</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Beautifying Oil</a></p>
<p><a href="recipe-list.php">C Serum</a></p>
<p><a href="recipe-list.php">Cleanser</a></p>
<p><a href="recipe-list.php">Exfoliator</a></p>
<p><a href="recipe-list.php">Facial Scrub</a></p>
<p><a href="recipe-list.php">Mask</a></p>
<p><a href="recipe-list.php">Moisturizer/Cream</a></p>
<p><a href="recipe-list.php">Toner & Mist</a></p>
<p><a href="recipe-list.php">Whitening & Lightening</a></p>
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/body00.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Dish Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Body & Skin Care</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Beautifying Oil</a></p>
<p><a href="recipe-list.php">Body Wash</a></p>
<p><a href="recipe-list.php">Body Scrub</a></p>
<p><a href="recipe-list.php">Exfoliator</a></p>
<p><a href="recipe-list.php">Moisturizer/Cream</a></p>
<p><a href="recipe-list.php">Soap</a></p>
<p><a href="recipe-list.php">Sunscreen</a></p>
<p><a href="recipe-list.php">Whitening & Lightening</a></p>
<!-- Button -->
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/hair.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Dish Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Hair</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Clarifying Shampoo</a></p>
<p><a href="recipe-list.php">Conditioner</a></p>
<p><a href="recipe-list.php">Hair Mask</a></p>
<p><a href="recipe-list.php">Hair Spray</a></p>
<p><a href="recipe-list.php">Hair Voluminizer</a></p>
<p><a href="recipe-list.php">Lightening Shampoo</a></p>
<p><a href="recipe-list.php">Shampoo</a></p>
<p><a href="recipe-list.php">No-poo Recipe</a></p>
<!-- Button -->
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/household.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Dish Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Household Products</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Air Freshener</a></p>
<p><a href="recipe-list.php">Cleaner</a></p>
<p><a href="recipe-list.php">Deodorizer</a></p>
<p><a href="recipe-list.php">Dishwasher Soap</a></p>
<p><a href="recipe-list.php">Disinfectant</a></p>
<p><a href="recipe-list.php">Fabric Softener</a></p>
<p><a href="recipe-list.php">Laundry Detergent</a></p>
<p><a href="recipe-list.php">Stain Remover</a></p>
<!-- Button -->
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/personal.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Dish Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Personal Hygiene</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Breath Freshener</a></p>
<p><a href="recipe-list.php">Deodorant</a></p>
<p><a href="recipe-list.php">Feminine Hygiene Solution</a></p>
<p><a href="recipe-list.php">Hair Removal</a></p>
<p><a href="recipe-list.php">Mouthwash</a></p>
<p><a href="recipe-list.php">Toothpaste/Tooth Powder</a></p>
<!-- Button -->
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="dishes-item-container">
<!-- Image Frame -->
<div class="img-frame">
<!-- Image -->
<img src="img/categories/wellness.jpg" class="img-responsive" alt="" />
<!-- Block for on hover effect to image -->
<div class="img-frame-hover">
<!-- Hover Icon -->
<a href="recipe-list.php"><i class="fa fa-pagelines"></i></a>
</div>
</div>
<!-- Dish Details -->
<div class="dish-details">
<!-- Heading -->
<h3>Wellness</h3>
<!-- Paragraph -->
<p><a href="recipe-list.php">Fermented Product</a></p>
<p><a href="recipe-list.php">Healthy Beverage</a></p>
<p><a href="recipe-list.php">Healthy Food</a></p>
<p><a href="recipe-list.php">Kefir</a></p>
<p><a href="recipe-list.php">Tincture</a></p>
<!-- Button -->
<a href="recipe-list.php" class="btn btn-danger btn-sm">View All Recipe</a>
</div>
</div>