-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
958 lines (920 loc) · 47.4 KB
/
index.html
File metadata and controls
958 lines (920 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vegano</title>
<link rel="stylesheet" href="CSS/Style.css">
<link rel="stylesheet" href="CSS/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="CSS/all.min.css">
<link rel="stylesheet" href="CSS/owl.carousel.min.css">
<link rel="stylesheet" href="CSS/owl.theme.default.min.css">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
</head>
<body id="body">
<header id="header">
<div class="container-xl">
<div class="row justify-content-between no-gutter">
<div class="col-3 d-none d-xl-block">
<ul class="text-left contact-list">
<li>
<span class="call">Call us:</span>
<a href="#">+1 (996) 123 456 78</a>
</li>
<li><a href="#">info@link.com</a></li>
</ul>
</div>
<div class="col-3 d-flex">
<a href="index.html" class="d-none d-xl-block m-auto">
<img class="logo inverse" src="Images/logo-inverse-234x82.webp" alt="">
</a>
<div class="hamburger d-xl-none">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
<a href="index.html" class="d-xl-none">
<img class="logo default" src="Images/logo-default-234x82.webp">
</a>
</div>
<div class="col-3 text-right">
<ul class="icons">
<li class="icon"><a href="#"><i class="fas fa-search"></i></a></li>
<li class="icon d-none d-xl-block"><a href="#"><i class="fas fa-shopping-cart"></i></a></li>
<li class="icon"><span class="lang">en</span></li>
<li class="icon ellipsis d-xl-none">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</li>
</ul>
</div>
</div>
</div>
</header>
<div class="text-center contact-box d-xl-none">
<div>
<span>Call us:</span>
<a href="#">+1 (996) 123 456 78</a>
</div>
<div><a href="#">info@link.com</a></div>
<div><a href="#"><i class="fas fa-shopping-cart"></i></a></div>
</div>
<nav id="navbar">
<div class="container-xl">
<div class="row">
<ul class="nav-list sticky">
<li class="nav-item">
<div class="d-flex">
<a href="#" class="active">HOME</a>
</div>
</li>
<li class="nav-item">
<div class="d-flex justify-content-between drop-menu">
<a href="#">PAGES</a>
<i class="fas fa-angle-down d-xl-none"></i>
</div>
<ul>
<li>ABOUT US</li>
<li>WHAT WE OFFER</li>
<li>OUR TEAM</li>
<li>PRICING LIST</li>
<li>TESTIMONIALS</li>
<li>404 PAGE</li>
<li>COMING SOON</li>
<li>PRIVACY POLICY</li>
<li>SEARCH RESULT</li>
</ul>
</li>
<li class="nav-item">
<div class="d-flex justify-content-between drop-menu">
<a href="#">BLOG</a>
<i class="fas fa-angle-down d-xl-none"></i>
</div>
<ul>
<li>GRID BLOG</li>
<li>BLOG POST</li>
</ul>
</li>
<li class="nav-item">
<div class="d-flex justify-content-between drop-menu">
<a href="#">GALLERY</a>
<i class="fas fa-angle-down d-xl-none"></i>
</div>
<ul>
<li>GRID GALLERY</li>
</ul>
</li>
<li class="nav-item">
<div class="d-flex justify-content-between drop-menu">
<a href="#">SHOP</a>
<i class="fas fa-angle-down d-xl-none"></i>
</div>
<ul>
<li>GRID SHOP</li>
<li>SHOP LIST</li>
<li>SINGLE PRODUCT</li>
<li>CART PAGE</li>
<li>CHECKOUT</li>
</ul>
</li>
<li class="nav-item">
<div class="d-flex">
<a href="#">CONTACT US</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<main>
<!-- Scroll to top button -->
<a onclick="topFunction()" id="myBtn">
<i class="fas fa-arrow-up text-center"></i>
</a>
<!-- Slider Section -->
<section class="slider">
<div id="arrow-left" class="arrow">prev</div>
<div class="slider-cont">
<div class="slide slide2" id="lastClone">
<div class="slide-content">
<div class="container text-center">
<h2>Make Your Food Organic</h2>
<p>With our wide variety of vegan & organic food products, we are sure <br> to help you make
the
right choice today.</p>
<a href="#" class="shop-now">SHOP NOW</a>
</div>
</div>
</div>
<div class="slide slide1">
<div class="slide-content">
<div class="container">
<h2>Tasty Way <br> to Healthier Life</h2>
<p>Our organic food contains all necessary <br> elements and vitamins for your health.</p>
<a href="#" class="shop-now ">SHOP NOW</a>
</div>
</div>
</div>
<div class="slide slide2">
<div class="slide-content">
<div class="container text-center">
<h2>Make Your Food Organic</h2>
<p>With our wide variety of vegan & organic food products, we are sure <br> to help you make
the
right choice today.</p>
<a href="#" class="shop-now">SHOP NOW</a>
</div>
</div>
</div>
<div class="slide slide1" id="firstClone">
<div class="slide-content">
<div class="container">
<h2>Tasty Way <br> to Healthier Life</h2>
<p>Our organic food contains all necessary <br> elements and vitamins for your health.</p>
<a href="#" class="shop-now">SHOP NOW</a>
</div>
</div>
</div>
</div>
<div id="arrow-right" class="arrow">next</div>
</section>
<div id="clear"></div>
<!-- Services Section -->
<section class="services">
<div class="container">
<div class="row">
<div class="col-xl-4 col-md-5 col-sm-6 text-right">
<div class="service-cont">
<div class="service-info">
<h4 class="service-title">100% ORGANIC</h4>
<p class="service-desc">We make our products from 100% organic and fresh ingredients
full of vitamins and nutrients.</p>
</div>
<div class="service-icon">
<i class="fas fa-home"></i>
</div>
</div>
<div class="service-cont bottom">
<div class="service-info">
<h4 class="service-title">GOOD FOR HEALTH</h4>
<p class="service-desc">Our products are exceptionally good for boosting your health and
increasing your energy level.</p>
</div>
<div class="service-icon">
<i class="fas fa-sun"></i>
</div>
</div>
</div>
<div class="col-xl-4 col-md-2 d-none d-md-block">
<img src="Images/index-1-399x407.webp" class="avocado-img">
</div>
<div class="col-xl-4 col-md-5 col-sm-6 right">
<div class="service-cont">
<div class="service-icon">
<i class="fas fa-tree"></i>
</div>
<div class="service-info">
<h4 class="service-title">NO ADDITIVES</h4>
<p class="service-desc">Our food products and drinks contain no artificial additives,
only vital elements that you need.</p>
</div>
</div>
<div class="service-cont bottom">
<div class="service-icon">
<i class="fas fa-leaf"></i>
</div>
<div class="service-info">
<h4 class="service-title">A LOT OF ENERGY</h4>
<p class="service-desc">We designed our products as the ultimately vegan & organic
sources of energy for your everyday life.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Products Section -->
<section class="featured-products text-center">
<h2 class="products-head">Featured Products</h2>
<div class="container">
<div class="row mb-5">
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<span class="sale">SALE</span>
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-1-196x134.webp" alt="">
</div>
<h5 class="product-name">CARROTS</h5>
<div class="prices">
<span class="old-price">$30.00</span>
<span class="price">$23.00</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<span class="new">NEW</span>
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-2-155x145.webp" alt="">
</div>
<h5 class="product-name">SPARKLING DRINKS</h5>
<div class="prices">
<span class="price">$13.00</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-3-180x154.webp" alt="">
</div>
<h5 class="product-name">TOMATOES</h5>
<div class="prices">
<span class="price">$16.99</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<span class="new">NEW</span>
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-4-222x153.webp" alt="">
</div>
<h5 class="product-name">PERSIMMON</h5>
<div class="prices">
<span class="price">$13.00</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<span class="new">NEW</span>
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-5-169x159.webp" alt="">
</div>
<h5 class="product-name">BEET ROOTS</h5>
<div class="prices">
<span class="price">$13.00</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-6-89x164.webp" alt="">
</div>
<h5 class="product-name">OLIVES</h5>
<div class="prices">
<span class="price">$16.99</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<span class="sale">SALE</span>
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-7-89x157.webp" alt="">
</div>
<h5 class="product-name">COFFE</h5>
<div class="prices">
<span class="old-price">$25.00</span>
<span class="price">$24.00</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="product-cont">
<div class="product-body">
<div class="img-wrapper">
<img src="Images/Products/product-8-145x136.webp" alt="">
</div>
<h5 class="product-name">MELON</h5>
<div class="prices">
<span class="price">$16.99</span>
</div>
</div>
<div class="product-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Parallax Section -->
<section class="parallax">
<div class="bg-parallax" id="bg">
<div class="container">
<div class="row text-center">
<div class="col-md-3 col-6">
<div class="counter">
<h2 class="count-num">245</h2>
<div class="line"></div>
<p class="counted-item">New food products<br>and drinks</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<h2 class="count-num">182</h2>
<div class="line"></div>
<p class="counted-item">Special<br>offers</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<h2 class="count-num">1267</h2>
<div class="line"></div>
<p class="counted-item">Satisfied<br>Clients</p>
</div>
</div>
<div class="col-md-3 col-6">
<div class="counter">
<h2 class="count-num">47</h2>
<div class="line"></div>
<p class="counted-item">Partners throughout<br>the USA</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why go vegan Section -->
<section class="why-go-vegan">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-5 col-xl-6 m-auto">
<div class="carousel-frame text-center">
<div class="owl-carousel owl-theme">
<div class="item">
<img src="Images/Owl-carousel/product-big-1-470x324.webp" alt="">
<h4 class="product-name">BERRIES</h4>
<div class="prices">
<span class="old-price">$30.00</span>
<span class="price">$13.00</span>
</div>
</div>
<div class="item">
<img src="Images/Owl-carousel/product-big-2-470x324.webp" alt="">
<h4 class="product-name">SPARKLING DRINKS</h4>
<div class="prices">
<span class="old-price">$18.00</span>
<span class="price">$13.00</span>
</div>
</div>
<div class="item">
<img src="Images/Owl-carousel/product-big-3-470x324.webp" alt="">
<h4 class="product-name">BEET ROOTS</h4>
<div class="prices">
<span class="old-price">$30.00</span>
<span class="price">$13.00</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-7 col-xl-6">
<h2 class="why">Why Go Vegan?</h2>
<div class="reason-cont">
<div class="reason-head active">
<i class="fas fa-angle-right rotate"></i>
<h5 class="reason">Be Healthier and Happier</h5>
</div>
<div class="desc-wrap show">
<p class="reason-desc">Being vegan is great for your health! According to the Academy
of
Nutrition and Dietetics, vegans are less likely to develop heart disease, cancer,
diabetes, and high blood pressure than meat-eaters are.</p>
</div>
</div>
<div class="reason-cont">
<div class="reason-head">
<i class="fas fa-angle-right"></i>
<h5 class="reason">It’s the Best Way to Help Animals</h5>
</div>
<div class="desc-wrap">
<p class="reason-desc">Did you know that every vegan saves nearly 200 animals per year?
There is simply no easier way to help animals and prevent suffering than by choosing
plant-based foods over meat, eggs, and dairy “products.”</p>
</div>
</div>
<div class="reason-cont">
<div class="reason-head">
<i class="fas fa-angle-right"></i>
<h5 class="reason">Slim Down and Become Energized</h5>
</div>
<div class="desc-wrap">
<p class="reason-desc">Is shedding some extra pounds first on your list of goals for the
new
year? Vegans are, on average, up to 20 pounds lighter than meat-eaters are. And
unlike
unhealthy fad diets, which leave you feeling tired (and usually don’t keep the
pounds
off for long), going vegan allows you to keep the excess fat off for good and have
plenty of energy.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4">
<div class="service-card">
<div class="left">
<i class="fas fa-map-marker-alt service-icon"></i>
</div>
<div class="right">
<h5 class="service-name">FREE SHIPPING</h5>
<span class="service-state">Enjoy our fast & free delivery</span>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="service-card">
<div class="left">
<i class="fab fa-rocketchat service-icon"></i>
</div>
<div class="right">
<h5 class="service-name">CUSTOMER CARE</h5>
<span class="service-state">Always ready to help you</span>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="service-card">
<div class="left">
<i class="far fa-heart service-icon"></i>
</div>
<div class="right">
<h5 class="service-name">HEALTHY & ENERGETIC</h5>
<span class="service-state">Our drinks are very nutritious.</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials text-center">
<div class="container">
<h2 class="testi-head">What People Say</h2>
<div class="testi-cont">
<div class="reviews-cont">
<div class="review">I love not having to run to the grocery store all the time for last minute
things. Everything I need is already here and it's healthier, hormone-free.
</div>
<div class="review">I love not having to run to the grocery store all the time for last minute
things. Everything I need is already here and it's healthier, hormone-free.
</div>
<div class="review">I love not having to run to the grocery store all the time for last minute
things. Everything I need is already here and it's healthier, hormone-free.
</div>
</div>
<div class="clients">
<div class="client-info active">
<img src="Images/Users/user-7-87x87.jpg">
<h6 class="client-name">PATRICIA GOODMAN</h6>
<span class="client">Client</span>
</div>
<div class="client-info">
<img src="Images/Users/user-8-87x87.webp">
<h6 class="client-name">JANE SMITH</h6>
<span class="client">Client</span>
</div>
<div class="client-info">
<img src="Images/Users/user-9-87x87.jpg">
<h6 class="client-name">SAM WILSON</h6>
<span class="client">Client</span>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section class="gallery text-center">
<h2 class="gallery-head">Our Gallery</h2>
<div class="selectors">
<ul class="selectors-list">
<li data-class="all" class="selector active">ALL</li>
<li data-class=".fruits" class="selector">FRUITS</li>
<li data-class=".vegetables" class="selector">VEGETABLES</li>
</ul>
</div>
<div class="container">
<div class="imgs-cont">
<div class="row">
<div class="col-sm-6 col-lg-4 col-xl-3 gallery-img fruits">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-1-270x250.webp">
<div class="overlay">
<h4 class="food">BANANAS</h4>
<span class="food-price">$12.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-3 gallery-img vegetables">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-2-270x530.jpg">
<div class="overlay">
<h4 class="food">TOMATOES</h4>
<span class="food-price">$13.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-3 gallery-img fruits">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-3-270x250.jpg">
<div class="overlay">
<h4 class="food">LEMONS</h4>
<span class="food-price">$10.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-3 gallery-img vegetables">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-4-270x250.jpg">
<div class="overlay">
<h4 class="food">AVOCADOS</h4>
<span class="food-price">$8.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-3 gallery-img fruits">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-5-270x250.jpg">
<div class="overlay">
<h4 class="food">STRAWBERRIES</h4>
<span class="food-price">$14.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-6 gallery-img vegetables">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-6-570x530.webp">
<div class="overlay">
<h4 class="food">SORREL</h4>
<span class="food-price">$16.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 col-xl-6 gallery-img vegetables">
<div class="img-body">
<img src="Images/Gallery/masonry-gallery-7-570x250.jpg">
<div class="overlay">
<h4 class="food">ALMONDS</h4>
<span class="food-price">$10.99</span>
<div class="food-icons">
<i class="fas fa-search"></i>
<i class="fas fa-shopping-cart"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stay-connected Section -->
<section class="stay-connected">
<div class="container">
<div class="row align-items-end">
<div class="col-lg-3 col-md-12 stay-txt">
<span class="stay">STAY</span>
<span class="connected">CONNECTED</span>
<span class="subscribe">Subscribe to our newsletter</span>
</div>
<div class="col-lg-6 col-sm-9 text-center">
<input type="text" placeholder="Enter your E-mail address">
</div>
<div class="col-lg-3 col-sm-3 text-center">
<a href="#" class="subscribe-button">SUBSCRIBE</a>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="team text-center">
<h2 class="team-head">Our Team</h2>
<div class="container">
<div class="row">
<div class="col-6 col-lg-3 mb-3">
<div class="img-frame">
<img src="Images/Team/team-4-270x227.jpg" alt="">
</div>
<div class="name">Sam Martinez</div>
<div class="part">Sam is the Founder and CEO of Vegano.</div>
<div class="social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-google-plus-g"></i>
</div>
</div>
<div class="col-6 col-lg-3 mb-3">
<div class="img-frame">
<img src="Images/Team/team-5-270x227.webp" alt="">
</div>
<div class="name">Eva McMillan</div>
<div class="part">Eva is the Head of Vegano's Supply Chain</div>
<div class="social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-google-plus-g"></i>
</div>
</div>
<div class="col-6 col-lg-3">
<div class="img-frame">
<img src="Images/Team/team-6-270x227.webp" alt="">
</div>
<div class="name">Joe Smith</div>
<div class="part">Joe Smith is our leading Customer Care specialist.</div>
<div class="social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-google-plus-g"></i>
</div>
</div>
<div class="col-6 col-lg-3">
<div class="img-frame">
<img src="Images/Team/team-7-270x227.webp" alt="">
</div>
<div class="name">Jane Williams</div>
<div class="part">Jane is our #1 expert in domestic Sales Management.</div>
<div class="social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-google-plus-g"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Blog Section -->
<section class="blog">
<h2 class="blog-head text-center">Blog Posts</h2>
<div class="container">
<div class="row">
<div class="col-6 col-md-4 mb-3">
<div class="blog-card">
<div class="img-frame">
<img src="Images/Blog/post-1-370x239.webp" alt="">
</div>
<div class="blog-details">
<div class="date">August 9, 2020</div>
<div class="blog-title">Breakfast Potatoes (Crispy + Tender)</div>
<div class="blog-desc">Simple vegan breakfast potatoes with crispy brown edges are
roasted in
the oven and made with only 5 ingredients...</div>
</div>
</div>
</div>
<div class="col-6 col-md-4">
<div class="blog-card">
<div class="img-frame">
<img src="Images/Blog/post-2-370x239.webp" alt="">
</div>
<div class="blog-details">
<div class="date">August 9, 2020</div>
<div class="blog-title">How to make your Breakfast Easy and Yummy</div>
<div class="blog-desc">Overloading your breakfast with calories may not be the best idea
but when you need a boost for the upcoming...</div>
</div>
</div>
</div>
<div class="col-6 col-md-4">
<div class="blog-card">
<div class="img-frame">
<img src="Images/Blog/post-3-370x239.jpg" alt="">
</div>
<div class="blog-details">
<div class="date">August 9, 2020</div>
<div class="blog-title">Tips from our Team: Making Yougurts with Fresh Fruits</div>
<div class="blog-desc">Combining milk and fruits is the solution for your daily meal,
whether it's breakfast. lunch, or any other meal...</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Logos Section -->
<section class="logos text-center">
<div class="container">
<div class="row">
<div class="col-6 col-sm-4 col-md">
<img src="Images/Logos/clients-1-120x114.png" alt="">
</div>
<div class="col-6 col-sm-4 col-md">
<img src="Images/Logos/clients-2-105x118.webp" alt="">
</div>
<div class="col-6 col-sm-4 col-md">
<img src="Images/Logos/clients-3-111x98.webp" alt="">
</div>
<div class="col-6 col-sm-4 col-md">
<img src="Images/Logos/clients-4-122x92.webp" alt="">
</div>
<div class="col-6 col-sm-4 col-md">
<img src="Images/Logos/clients-5-112x112.webp" alt="">
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="container">
<div class="row justify-content-between">
<div class="col-md-10 col-lg-3 col-xl-4">
<div class="footer-gallery">
<h5>GALLERY</h5>
<div class="footer-imgs">
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-1-93x93.jpg" alt="">
</div>
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-2-93x93.webp" alt="">
</div>
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-3-93x93.webp" alt="">
</div>
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-4-93x93.webp" alt="">
</div>
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-5-93x93.webp" alt="">
</div>
<div class="img-frame">
<img src="Images/Grid-gallery/grid-gallery-6-93x93.webp" alt="">
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-7 col-lg-5">
<h5>QUICK LINKS</h5>
<div class="footer-links">
<div class="left-links">
<div class="footer-link"><span class="line"></span>Our Team</div>
<div class="footer-link"><span class="line"></span>New Products</div>
<div class="footer-link"><span class="line"></span>Blog</div>
<div class="footer-link"><span class="line"></span>About Us</div>
<div class="footer-link"><span class="line"></span>FAQ</div>
<div class="footer-link"><span class="line"></span>Contact Us</div>
</div>
<div class="right-links">
<div class="footer-link"><span class="line"></span>Smoothies</div>
<div class="footer-link"><span class="line"></span>Energy Bowls</div>
<div class="footer-link"><span class="line"></span>Juices</div>
<div class="footer-link"><span class="line"></span>Ingredients</div>
<div class="footer-link"><span class="line"></span>Delivery</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 col-xl-3">
<h5>GET IN TOUCH</h5>
<div class="contact-info">
<div class="info">
<i class="fas fa-map-marker-alt"></i>
<span>523 Sylvan Ave, 5th Floor
Mountain View, CA 94041 USA</span>
</div>
<div class="info">
<i class="fas fa-phone-alt"></i>
<span>+1 (844) 123 456 78</span>
</div>
<div class="info">
<i class="far fa-envelope"></i>
<span>info@demolink.org</span>
</div>
</div>
<div class="footer-social-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-google-plus-g"></i>
<i class="fab fa-skype"></i>
</div>
</div>
</div>
</div>
</div>
<div class="copyrights text-center">© 2020 Vegano. All rights reserved. Privacy Policy.</div>
</footer>
<script src="JS/jquery.js"></script>
<script src="JS/owl.carousel.min.js"></script>
<script src="JS/Script.js"></script>
<script src="JS/bootstrap.min.js"></script>
</body>
</html>