-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1052 lines (949 loc) · 57.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
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>
<title>MANNAWELL</title>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/main.css">
<!-- <link rel="stylesheet" href="css/shop.css" > -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<script src="https://unpkg.com/swiper/swiper-bundle.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<style>
.product-buttons {
position: absolute;
bottom: 10px;
right: 10px;
border-radius: 10px;
overflow: hidden;
}
.product-buttons a {
float: left;
width: 40px;
height: 40px;
font-size: 0;
color: transparent;
text-align: center;
background-color: #669543;
}
.product-buttons a.loading [class*='rt-icon'],
.product-buttons a.loading:before {
display: inline-block;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
.product-buttons a.loading [class*='rt-icon']:before,
.product-buttons a.loading:before:before {
content: "\e61b";
}
.product-buttons a.loading:before {
content: "\e61b";
}
.product-buttons a i,
.product-buttons a:before {
line-height: 40px;
font-size: 16px;
}
.product-buttons a:before {
font-family: 'rt-icons-2';
content: "\e626";
}
.product-buttons a.favorite_button {
background-color: #fff;
color: #669543;
}
.product-buttons a.favorite_button:before {
font-family: FontAwesome;
content: "\f004";
}
.product-buttons a:hover {
color: #1f232b;
}
.product-buttons a.add_to_cart {
background-color: #669543;
font-size: 0;
color: #ffffff;
}
@media only screen and (max-width: 600px){
.banner .title{
font-size: 24px!important;
}
}
.product-buttons a.add_to_cart:hover {
color: #1f232b;
background-color: #669543;
}
.product-buttons a.add_to_cart:before {
content: "\f07a";
font-family: FontAwesome;
font-size: 16px;
}
.product-buttons a.product_type_variable:before {
font-size: 20px;
content: "\e63f";
}
.product .item-media .price {
position: absolute;
top: 10px;
left: 10px;
padding: 7px 10px;
border-radius: 10px;
font-weight: 600;
z-index: 1;
}
.swiper-banner {
width: 100%;
height: 100%;
min-height: 30em;
background: #000;
}
.banner {
font-size: 18px;
color: #fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 40px 60px;
}
.parallax-bg {
position: absolute;
left: 0;
top: 0;
width: 130%;
height: 100%;
-webkit-background-size: cover;
background-size: cover;
background-position: center;
}
.banner .title {
font-size: 41px;
font-weight: 300;
background: #00000054;
padding: 2em;
border-radius: 4em;
}
.banner {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 25em;
}
.imageSlider {
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
}
.image {
background-position: center;
background-size: cover;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<!-- wrappers for visual page editor and boxed version of template -->
<div id="canvas">
<div id="box_wrapper">
<!-- template sections -->
<section class="page_topline ls ms table_section table_section_md">
<div class="container">
<div class="row">
<div class="col-sm-8 col-lg-9 text-center text-sm-left">
<div class="inline-content big-spacing"> <span>
<i class="fa fa-map-marker highlight2 rightpadding_5" aria-hidden="true"></i>
123 Abshire Circle, Colorado
</span> <span class="greylinks">
<i class="fa fa-pencil highlight2 rightpadding_5" aria-hidden="true"></i>
<a href="mailto:[email protected]">[email protected]</a>
</span> <span>
<i class="fa fa-clock-o highlight2 rightpadding_5" aria-hidden="true"></i>
Working Hours: 24/7
</span> </div>
</div>
<div class="col-sm-4 col-lg-3 text-center text-sm-right"> <a href="contacts.html"
class="theme_button color3 block_button margin_0">Request a call back free</a> </div>
</div>
</div>
</section>
<header class="page_header header_white toggler_right">
<div class="container">
<div class="row">
<div class="col-sm-12 display_table">
<div class="header_left_logo display_table_cell"> <a href="index.html"
class="logo logo_with_text">
<img src="images/logo.png" alt="">
<span class="logo_text">
MANNAWELL
</span>
</a> </div>
<div class="header_mainmenu display_table_cell text-right">
<!-- main nav start -->
<nav class="mainmenu_wrapper">
<ul class="mainmenu nav sf-menu">
<li class="active"> <a href="index-2.html">Home</a>
</li>
<!-- contacts -->
<li> <a href="contact.html">Contact us</a>
</li>
<!-- eof contacts -->
</ul>
</nav>
<!-- eof main nav -->
<!-- header toggler --><span class="toggle_menu"><span></span></span>
</div>
</div>
</div>
</div>
</header>
<section class="ls section_offset_teasers section_padding_top_10 section_padding_bottom_10">
<div class="swiper-container swiper-banner">
<div class="parallax-bg" style="background-image:url(./img/03.webp);background-size: contain;"
data-swiper-parallax="-23%"></div>
<div class="swiper-wrapper">
<div class="swiper-slide banner">
<div class="title" data-swiper-parallax="-300">Passionately Growing, Processing, and
Preserving Health</div>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-white"></div>
<!-- Add Navigation -->
<div class="swiper-button-prev swiper-button-white"></div>
<div class="swiper-button-next swiper-button-white"></div>
</div>
</section>
<section id="about" class="ls section_padding_top_100 section_padding_bottom_130 columns_margin_bottom_20">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-12">
<div class="person_bio">
<div class="avatar"> <img src="images/faces/01.jpg" alt=""> </div>
<span class="small-text highlight4">
</span>
<div class="person_name grey"> Our Commitment </div>
</div>
<div class="media bottommargin_25">
<div class="media-left media-middle"> <img src="images/icons/01.png" alt="">
</div>
<div class="media-body media-middle">
<h4 class="entry-title hover-color2"> <a href="#">No Heat</a>
</h4>
</div>
</div>
<div class="media bottommargin_25">
<div class="media-left media-middle"> <img src="images/icons/02.png" alt="">
</div>
<div class="media-body media-middle">
<h4 class="entry-title hover-color2"> <a href="#">No Chemicals</a> </h4>
</div>
</div>
<div class="media bottommargin_25">
<div class="media-left media-middle"> <img src="images/icons/03.png" alt="">
</div>
<div class="media-body media-middle">
<h4 class="entry-title hover-color2"> <a href="#">No Grinding</a> </h4>
</div>
</div>
</div>
<div class="col-md-9 col-sm-8">
<h2 class="section_header">Diamond Pod Processing</h2>
<p>Utilizing a unique patented milling process,”fractalization,” MannaWell fractalizes
cannabis flowers and biomass without a loss of potency, terpenes, or yield. We
fractalize dried, whole plant cannabis at room temperature to the consistency of
confectionery flour (Diamond Fleur). Fractalization allows for customizing CBD/THC
ratios and terpene profiles, and provides for various extraction efficiencies. We are
currently evaluating customized blends with other botanicals as well. </p>
<p>Utilizing a unique patented milling process,”fractalization,” MannaWell fractalizes
cannabis flowers and biomass without a loss of potency, terpenes, or yield. We
fractalize dried, whole plant cannabis at room temperature to the consistency of
confectionery flour (Diamond Fleur). Fractalization allows for customizing CBD/THC
ratios and terpene profiles, and provides for various extraction efficiencies. We are
currently evaluating customized blends with other botanicals as well. </p>
<p class="bold grey">We will continue to demonstrate our commitment to small growers by
expanding the market for locally grown cannabis Diamond Fleur and for the
rapidly-expanding, unique product lines it supports.</p>
</div>
</div>
</div>
</section>
<section id="products" class="ds parallax page_shop section_padding_top_150 section_padding_bottom_150">
<div class="container">
<div class="row">
<div class="col-12 col-lg-12 col-sm-8">
<div class="swiper-products">
<div class="swiper-wrapper">
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/02.png" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$50.00</span> </ins>
</span>
<div class="product-buttons"><a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 5.0 out of 5"> <span
style="width:100%">
<strong class="rating">5.0</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Flowers</a> </h4>
<p class="content-3lines-ellipsis">Swine meatball shankle cow kielbasa
burgdoggen shoulder andouille pork loin brisket leberkas.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/01.png" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$85.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 4.0 out of 5"> <span
style="width:80%">
<strong class="rating">4.0</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Pre-Rolls</a> </h4>
<p class="content-3lines-ellipsis">Pork andouille pig, beef ribs
prosciutto
sausage picanha leberkas ham hock cow. Kevin doner filet mignon.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.0 out of 5"> <span
style="width:60%">
<strong class="rating">3.0</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Concentrates</a> </h4>
<p class="content-3lines-ellipsis">Biltong ribeye cupim meatloaf, burgd
shoulder
jerky pork loin turducken alcatra venison sirloin.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.5 out of 5"> <span
style="width:70%">
<strong class="rating">3.5</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Oil</a> </h4>
<p class="content-3lines-ellipsis">Pancetta t-bone ball tip pig buffalo,
fatback
filet mignon brisket frankfurter boudin jowl tenderloin.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.5 out of 5"> <span
style="width:70%">
<strong class="rating">3.5</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Oil</a> </h4>
<p class="content-3lines-ellipsis">Pancetta t-bone ball tip pig buffalo,
fatback
filet mignon brisket frankfurter boudin jowl tenderloin.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.5 out of 5"> <span
style="width:70%">
<strong class="rating">3.5</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Oil</a> </h4>
<p class="content-3lines-ellipsis">Pancetta t-bone ball tip pig buffalo,
fatback
filet mignon brisket frankfurter boudin jowl tenderloin.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.5 out of 5"> <span
style="width:70%">
<strong class="rating">3.5</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Oil</a> </h4>
<p class="content-3lines-ellipsis">Pancetta t-bone ball tip pig buffalo,
fatback
filet mignon brisket frankfurter boudin jowl tenderloin.</p>
</div>
</article>
</div>
<div class="swiper-slide product">
<article
class="product ls vertical-item content-padding rounded overflow_hidden loop-color">
<div class="item-media"> <img src="images/shop/04.jpg" alt="" /> <span
class="price main_bg_color">
<ins>
<span class="amount">$99.00</span> </ins>
</span>
<div class="product-buttons"> <a href="#" class="add_to_cart">
<span class="sr-only">Add to favorite</span>
</a> </div>
</div>
<div class="item-content">
<div class="star-rating" title="Rated 3.5 out of 5"> <span
style="width:70%">
<strong class="rating">3.5</strong> out of 5
</span> </div>
<h4 class="entry-title topmargin_5"> <a
href="shop-product-right.html">Cannabis
Oil</a> </h4>
<p class="content-3lines-ellipsis">Pancetta t-bone ball tip pig buffalo,
fatback
filet mignon brisket frankfurter boudin jowl tenderloin.</p>
</div>
</article>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section>
<section style="padding: 5em 0;">
<h2 class="section_header text-center">Photo Gallery</h2>
<div class="swiper-container imageSlider">
<div class="swiper-wrapper ">
<div class="swiper-slide image" style="background-image:url(./img/01.jpg)"></div>
<div class="swiper-slide image" style="background-image:url(./img/02.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/03.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/04.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/05.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/02.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/03.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/04.webp)"></div>
<div class="swiper-slide image" style="background-image:url(./img/05.webp)"></div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</section>
<section id="blog"
class="ds parallax page_blog section_padding_top_150 section_padding_bottom_130 columns_margin_bottom_30 columns_padding_25">
<div class="container">
<h2 class="section_header text-center">Our Articals</h2>
<div class="row">
<div class="col-sm-12">
<div class="swiper-container blog">
<div class="swiper-wrapper">
<div class="swiper-slide post">
<article
class="post vertical-item content-padding rounded overflow_hidden loop-color">
<div class="entry-thumbnail"> <img src="./img/03.webp" alt="">
</div>
<div class="item-content ls">
<header class="entry-header">
<div class="entry-meta content-justify small-text"> <span
class="greylinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
15 jan, 2018</time>
</a>
</span> <span class="categories-links highlightlinks">
<a href="blog-left.html">Products</a>
</span> </div>
<h4 class="entry-title"> <a href="blog-single-left.html">We Launches
New CBD
Product</a> </h4>
</header>
<div class="entry-content content-3lines-ellipsis">
<p>Tenderloin pork loin leberkas buffalo, sirloin landjaeger
short...</p>
</div>
</div>
</article>
</div>
<div class="swiper-slide post">
<article
class="post vertical-item content-padding rounded overflow_hidden loop-color">
<div class="entry-thumbnail"> <img src="./img/02.webp" alt="">
</div>
<div class="item-content ls">
<header class="entry-header">
<div class="entry-meta content-justify small-text"> <span
class="greylinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
31 jan, 2018</time>
</a>
</span> <span class="categories-links highlightlinks">
<a href="blog-left.html">News</a>
</span> </div>
<h4 class="entry-title"> <a href="blog-single-left.html">Overview of
2017
Top Highlights </a> </h4>
</header>
<div class="entry-content content-3lines-ellipsis">
<p>Pork loin picanha hambu prosciutto buffalo, chick kielbasa
strip...</p>
</div>
</div>
</article>
</div>
<div class="swiper-slide post">
<article
class="post vertical-item content-padding rounded overflow_hidden loop-color">
<div class="entry-thumbnail"> <img src="./img/04.webp" alt="">
</div>
<div class="item-content ls">
<header class="entry-header">
<div class="entry-meta content-justify small-text"> <span
class="greylinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
15 jan, 2018</time>
</a>
</span> <span class="categories-links highlightlinks">
<a href="blog-left.html">Products</a>
</span> </div>
<h4 class="entry-title"> <a href="blog-single-left.html">We Launches
New CBD
Product</a> </h4>
</header>
<div class="entry-content content-3lines-ellipsis">
<p>Tenderloin pork loin leberkas buffalo, sirloin landjaeger
short...</p>
</div>
</div>
</article>
</div>
<div class="swiper-slide post">
<article
class="post vertical-item content-padding rounded overflow_hidden loop-color">
<div class="entry-thumbnail"> <img src="images/events/06.jpg" alt="">
</div>
<div class="item-content ls">
<header class="entry-header">
<div class="entry-meta content-justify small-text"> <span
class="greylinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
23 jan, 2018</time>
</a>
</span> <span class="categories-links highlightlinks">
<a href="blog-left.html">Plant</a>
</span> </div>
<h4 class="entry-title"> <a href="blog-single-left.html">Provides
Update on
30,000 Sq.</a> </h4>
</header>
<div class="entry-content content-3lines-ellipsis">
<p>Jerky rump venison turk tenderloin beef turduck. Pork loin
picanha...
</p>
</div>
</div>
</article>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section>
<section id="testimonials" class="ls section_padding_top_150 section_padding_bottom_150">
<div class="container">
<span class="small-text big highlight2">
Testimonials
</span>
<h2 class="section_header">Our Clients Said</h2>
<div class="row">
<div class="col-12 col-sm-8 col-lg-12">
<div class="swiper-container testimonial">
<div class="swiper-wrapper">
<div class="swiper-slide client">
<blockquote class="loop-color">
<div class="media bottommargin_20">
<div class="media-left media-middle">
<div class="avatar"> <img src="images/faces/02.jpg" alt=""> </div>
</div>
<div class="media-body media-middle">
<h5>Philip Morton</h5> <span
class="small-text highlight">Client</span>
</div>
</div>
<p>«Bacon short loin capicola, turkey burgdoggen beef meatloaf pig sausage
leberkas
landjaeger.» </p>
</blockquote>
</div>
<div class="swiper-slide client">
<blockquote class="loop-color">
<div class="media bottommargin_20">
<div class="media-left media-middle">
<div class="avatar"> <img src="images/faces/03.jpg" alt=""> </div>
</div>
<div class="media-body media-middle">
<h5>Martha Adkins</h5> <span
class="small-text highlight">Client</span>
</div>
</div>
<p>«Kevin ball tip bresaola leberkas meatball. Pastrami tongue filet mignon
burgdoggen.»</p>
</blockquote>
</div>
<div class="swiper-slide client">
<blockquote class="loop-color">
<div class="media bottommargin_20">
<div class="media-left media-middle">
<div class="avatar"> <img src="images/faces/04.jpg" alt=""> </div>
</div>
<div class="media-body media-middle">
<h5>Joel White</h5> <span class="small-text highlight">Client</span>
</div>
</div>
<p>«Andouille rump landjaeger chuck. Strip steak pancetta cow ham biltong
chuck
t-bone ribeye.» </p>
</blockquote>
</div>
<div class="swiper-slide client">
<blockquote class="loop-color">
<div class="media bottommargin_20">
<div class="media-left media-middle">
<div class="avatar"> <img src="images/faces/05.jpg" alt=""> </div>
</div>
<div class="media-body media-middle">
<h5>Philip Morton</h5> <span
class="small-text highlight">Client</span>
</div>
</div>
<p>«Bacon short loin capicola, turkey burgdoggen beef meatloaf pig sausage
leberkas
landjaeger.» </p>
</blockquote>
</div>
<div class="swiper-slide client">
<blockquote class="loop-color">
<div class="media bottommargin_20">
<div class="media-left media-middle">
<div class="avatar"> <img src="images/faces/06.jpg" alt=""> </div>
</div>
<div class="media-body media-middle">
<h5>Martha Adkins</h5> <span
class="small-text highlight">Client</span>
</div>
</div>
<p>«Kevin ball tip bresaola leberkas meatball. Pastrami tongue filet mignon
burgdoggen.»</p>
</blockquote>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section>
<section id="subscribe"
class="cs main_color2 background_cover overlay_color page_subscribe section_padding_top_75 section_padding_bottom_75 table_section table_section_lg">
<div class="container">
<div class="row">
<div class="col-xs-12 col-lg-3 text-center text-md-left"> <span class="small-text big black">
Subscribe now to
</span>
<h2 class="section_header">Our Newsletter</h2>
</div>
<div class="col-xs-12 col-sm-6 col-sm-offset-3 col-md-12 col-md-offset-0 col-lg-9">
<div class="widget widget_mailchimp">
<form class="signup" action="http://webdesign-finder.com/html/canabia/" method="get">
<div class="row">
<div class="col-xs-12 col-md-4">
<div class="form-group margin_0"> <input
class="form-control mailchimp_fullname" name="fullname" required=""
type="text" placeholder="Your Full Name*"> </div>
</div>
<div class="col-xs-12 col-md-4">
<div class="form-group margin_0"> <input
class="mailchimp_email form-control" name="email" required=""
type="email" placeholder="Your Email Address*"> </div>
</div>
<div class="col-xs-12 col-md-4"> <button type="submit"
class="theme_button color2 block_button margin_0">Subscribe to
newsletter</button> </div>
<div class="col-sm-12 margin_0">
<div class="response"></div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<footer class="page_footer ds section_padding_top_150 section_padding_bottom_130 columns_margin_bottom_30">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-12 text-center">
<div class="logo vertical_logo topmargin_20"> <img src="images/logo.png" alt=""> <span
class="logo_text">
MANNAWELL
</span> </div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 text-center text-sm-left">
<div class="widget widget_text greylinks color2">
<h4 class="widget-title"> Our Contacts </h4>
<div class="media small-media">
<div class="media-left"> <i class="fa fa-map-marker highlight2"></i> </div>
<div class="media-body">123 Abshire Circle, Colorado</div>
</div>
<div class="media small-media">
<div class="media-left"> <i class="fa fa-pencil highlight2"></i> </div>
<div class="media-body"> <a
href="mailto:[email protected]">[email protected]</a> </div>
</div>
<div class="media small-media">
<div class="media-left"> <i class="fa fa-internet-explorer highlight2"></i> </div>
<div class="media-body"> <a href="#">www.example.com</a> </div>
</div>
<div class="media small-media">
<div class="media-left"> <i class="fa fa-phone highlight2"></i> </div>
<div class="media-body">(443) 614-7279</div>
</div>
<div class="media small-media">
<div class="media-left"> <i class="fa fa-clock-o highlight2"></i> </div>
<div class="media-body">Working Hours: 24/7</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 text-center text-sm-left">
<div class="widget widget_recent_posts">
<h4 class="widget-title">Recent Posts</h4>
<ul>
<li class="media">
<div class="media-left media-middle"> <img src="images/recent_post1.jpg" alt="">
</div>
<div class="media-body media-middle">
<p class="darklinks"> <a href="blog-single-left.html">Rump groud round shan
bacon chop.</a> </p> <span class="small-text highlightlinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
11 jan, 2018</time>
</a>
</span>
</div>
</li>
<li class="media">
<div class="media-left media-middle"> <img src="images/recent_post2.jpg" alt="">
</div>
<div class="media-body media-middle">
<p class="darklinks"> <a href="blog-single-left.html">Bresaola jerky short
ribs pastrami shank.</a> </p> <span
class="small-text highlightlinks">
<a href="blog-single-left.html">
<time datetime="2017-10-03T08:50:40+00:00">
23 jan, 2018</time>
</a>
</span>
</div>
</li>
</ul>
</div>
</div>
<!-- <div class="col-lg-3 col-md-4 col-sm-6 col-sm-offset-3 col-md-offset-0 text-center">
<div class="widget widget_text"> <a href="#">
<img src="images/banner.png" alt="">
</a> </div>
</div> -->
</div>
</div>
</footer>
<section class="ds ms page_copyright section_padding_50">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<p>© All Rights Reserved.</p>
<div class="social-links"> <a class="social-icon border-icon rounded-icon socicon-facebook"
href="#" title="Facebook"></a> <a
class="social-icon border-icon rounded-icon socicon-twitter" href="#"
title="Twitter"></a> <a class="social-icon border-icon rounded-icon socicon-google"
href="#" title="Google"></a> </div>
</div>
</div>
</div>
</section>
</div>
<!-- eof #box_wrapper -->
</div>
<script>
var swiper2 = new Swiper('.swiper-products', {
slidesPerView: 1,
spaceBetween: 30,
// freeMode: true,
breakpoints: {
640: {
slidesPerView: 1,
},
1024: {
slidesPerView: 4,
},
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});
var swiper = new Swiper('.swiper-banner', {
speed: 600,
parallax: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
var swiper3 = new Swiper('.imageSlider', {
effect: 'coverflow',
grabCursor: true,
centeredSlides: true,
slidesPerView: 'auto',
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 500,