-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1124 lines (1078 loc) · 43.6 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AGROGREEN - An Agricultural Products & Services Providing Company</title>
<!-- link favicon -->
<link
rel="shortcut icon"
href="assets/images/favicon.ico"
type="image/x-icon"
/>
<!-- link css of bootstrap-icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css"
/>
<!-- link css of bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- link style -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div id="wrapper" class="d-flex flex-column">
<!-- Pre-navigation section -->
<div
id="pre-nav"
class="d-flex top-bar justify-content-between pt-2 px-md-5"
>
<div class="topbar-left d-flex justify-content-start">
<div class="ms-2 ms-md-auto me-md-4">
<a href="#" class="me-2"
><i class="fa-brands fa-square-facebook"></i
></a>
<a href="#" class="me-2"><i class="fa-brands fa-youtube"></i></a>
<a href="#" class="me-2 d-none d-md-inline"
><i class="fa-brands fa-square-x-twitter"></i
></a>
<a href="#" class="me-2 d-none d-md-inline"
><i class="fa-brands fa-square-pinterest"></i
></a>
<a href="#" class="me-2"
><i class="fa-brands fa-square-instagram"></i
></a>
</div>
<p class="me-4 d-none d-xl-block">|</p>
<p class="d-none d-xl-block">
That's right, we only sell <span>100% organic</span>
</p>
</div>
<div class="topbar-right d-flex justify-content-end">
<a href="#" class="me-2 me-md-5">
<i class="bi bi-envelope-fill"></i> needhelp@agrogreen.com
</a>
<p class="d-none d-md-inline">
<i class="bi bi-clock-fill"></i> Mon - Sat 8:00 - 6:30,
Sunday - Closed
</p>
</div>
</div>
<!-- Navigation section -->
<header class="sticky-top">
<nav class="navbar px-md-4">
<div class="container-fluid d-flex justify-content-between">
<!-- Navbar Brand Logo -->
<a class="navbar-brand" href="#">
<img
src="./assets/images/brand-logo.png"
alt="Logo"
width="40"
height="40"
class="d-inline-block align-text-top"
/>
<span class="brand-name ms-3 d-none d-md-inline"
>AGRO<span>GREEN</span></span
>
</a>
<!-- Responsive Navbar -->
<button
class="navbar-toggler d-lg-none"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 fw-bold">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#blogs">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contacts</a>
</li>
</ul>
</div>
<!-- Normal Navbar -->
<ul class="nav normal-nav d-none d-lg-flex fw-bold">
<li class="nav-item">
<a class="nav-link active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link nav-head" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link nav-head" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link nav-head" href="#blogs">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link nav-head" href="#contact">Contact Us</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="d-flex flex-column justify-content-center">
<section id="home" class="main-header">
<!-- Carousel Section -->
<div
id="carouselExampleSlidesOnly"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="3000">
<div class="carousel-image" id="carousel-image1"></div>
<!-- <img
src="https://as2.ftcdn.net/v2/jpg/05/18/79/89/1000_F_518798986_nPCqm5kcOFsdgI8Hiz6MkslhZPbZ5Pmm.jpg"
class="d-block w-100"
alt="..."
/> -->
<div
class="carousel-caption d-flex flex-column justify-content-center h-100"
>
<h5>Agriculture Leader</h5>
<p class="my-3 mx-lg-5">
Some representative placeholder content for the third slide.
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Officia, distinctio!
</p>
<a
href="#about"
class="fw-bold text-light text-decoration-none mt-2"
>
More info
<i class="fa-solid fa-circle-chevron-right"></i>
</a>
</div>
</div>
<div class="carousel-item" data-bs-interval="3000">
<div class="carousel-image" id="carousel-image2"></div>
<!-- <img
src="https://images.pexels.com/photos/1509607/pexels-photo-1509607.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
class="d-block w-100"
alt="..."
/> -->
<div
class="carousel-caption d-flex flex-column justify-content-center h-100"
>
<h5>Quality Standards</h5>
<p class="my-3 mx-lg-5">
Some representative placeholder content for the third slide.
Lorem ipsum dolor sit amet.
</p>
<a
href="#about"
class="fw-bold text-light text-decoration-none mt-2"
>
More info
<i class="fa-solid fa-circle-chevron-right"></i>
</a>
</div>
</div>
<div class="carousel-item" data-bs-interval="3000">
<div class="carousel-image" id="carousel-image3"></div>
<!-- <img
src="https://images.pexels.com/photos/5529588/pexels-photo-5529588.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
class="d-block w-100"
alt="..."
/> -->
<div
class="carousel-caption d-flex flex-column justify-content-center h-100"
>
<h5>Organic Services</h5>
<p class="my-3 mx-lg-5">
Some representative placeholder content for the third slide.
Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Aspernatur nostrum, quae hic assumenda odio corporis ipsam
aperiam beatae dolore culpa.
</p>
<a
href="#about"
class="fw-bold text-light text-decoration-none mt-2"
>
More info
<i class="fa-solid fa-circle-chevron-right"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About section -->
<section id="about">
<header class="section-header">About Agrogreen</header>
<!-- 1st about container -->
<div
class="d-flex flex-column flex-md-row justify-content-center mt-4 mx-4"
>
<div class="image-l me-md-5 mt-3">
<img
class="w-100 pe-none rounded"
src="https://images.pexels.com/photos/3735791/pexels-photo-3735791.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="text-container w-50 d-flex flex-column">
<h3 class="headline">We're leader in agriculture market</h3>
<p>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised words which don't look even
slightly believable.
</p>
<div
class="tips d-flex flex-row flex-wrap justify-content-around w-100 py-3 bg-info rounded"
>
<div class="d-flex flex-row align-items-center py-1 pe-none">
<img
src="https://cdn-icons-png.flaticon.com/512/1555/1555620.png"
alt=""
height="50px"
/>
<div class="fw-bold ps-4">Growing Fruits and Vegetables</div>
</div>
<div class="d-flex flex-row align-items-center py-1 pe-none">
<img
src="https://cdn-icons-png.flaticon.com/512/10132/10132303.png"
alt=""
height="50px"
/>
<div class="fw-bold ps-4">Tips for Ripening your Fruits</div>
</div>
</div>
<p class="mt-2">
If you are going to use a passage of Lorem Ipsum, you need to be
sure there isn't anything embarrassing hidden in the middle of
text.
</p>
<a href="#about" class="btn mx-auto yg-btn">Learn More</a>
</div>
</div>
<!-- 2nd about container -->
<div
class="d-flex flex-column flex-md-row-reverse justify-content-center mt-5 mx-4"
>
<div class="image-r ms-md-5 mt-3">
<img
class="w-100 pe-none rounded"
src="https://images.pexels.com/photos/10816106/pexels-photo-10816106.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="text-container pb-3 w-50 d-flex flex-column">
<h3 class="headline">
We have <span class="thirty">30</span> years of agriculture &
eco farming experience
</h3>
<p>
If you are going to use a passage of Lorem Ipsum, you need to be
sure there isn't anything embarrassing hidden in the middle of
text. Lorem ipsum dolor sit amet consectetur adipisicing elit.
Exercitationem eius soluta facere eos veritatis nihil qui ipsa
rem! Magni, sint eum. Excepturi natus ut, facere ipsam
necessitatibus delectus quam blanditiis.
</p>
<div
class="tips d-flex flex-row flex-wrap justify-content-around w-100 py-3 bg-info rounded"
>
<div class="d-flex flex-row align-items-center py-1 pe-none">
<img
src="https://cdn-icons-png.flaticon.com/512/7417/7417772.png"
alt=""
height="50px"
/>
<div class="fw-bold ps-4">Professional Farmers</div>
</div>
<div class="d-flex flex-row align-items-center py-1 pe-none">
<img
src="https://cdn-icons-png.flaticon.com/512/1587/1587922.png"
alt=""
height="50px"
/>
<div class="fw-bold ps-4">Organic & Eco Solutions</div>
</div>
</div>
<p class="mt-2">
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised words which don't look even
slightly believable.
</p>
<a href="#about" class="btn mx-auto yg-btn mb-4">Learn More</a>
</div>
</div>
</section>
<!-- Services section -->
<section
id="services"
class="d-flex flex-column justify-content-center"
>
<header class="section-header text-capitalize">What we do</header>
<h3 class="headline text-center">We're offering services like</h3>
<div
class="card-container d-flex flex-wrap justify-content-around mb-5"
>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-01.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Agriculture Products</a>
</h5>
<p class="card-text">
Seamlessly visualize quality ellectual capital without
superior collaboration and idea such and asser sharing
listically
</p>
</div>
</div>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-02.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Fresh Vegetables</a>
</h5>
<p class="card-text">
Seamlessly visualize quality ellectual capital without
superior collaboration and idea such and asser sharing
listically
</p>
</div>
</div>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-03.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Organic Products</a>
</h5>
<p class="card-text">
Seamlessly visualize quality ellectual capital without
superior collaboration and idea such and asser sharing
listically
</p>
</div>
</div>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-04.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Ecological Farming</a>
</h5>
<p class="card-text">
Seamlessly visualize quality ellectual capital without
superior collaboration and idea such and asser sharing
listically
</p>
</div>
</div>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-05.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Dairy Products</a>
</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
</div>
</div>
<div class="card mx-2">
<div class="overflow-hidden rounded-top">
<img
src="./assets/images/services/services-06.jpg"
class="card-img-top"
alt="..."
/>
</div>
<div class="card-body">
<h5 class="card-title py-2">
<a href="">Fresh Berries</a>
</h5>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
</div>
</div>
</div>
<div class="fixed-bg py-4">
<h3 class="headline text-center text-light">
We're providing high quality products
</h3>
</div>
<div
class="brands-container position-relative d-flex flex-row flex-nowrap overflow-hidden my-5 py-5"
>
<div class="brands-slide d-flex flex-row flex-nowrap">
<img
class="brand-logo"
src="./assets/images/brands/brand-1-1.png"
alt="brand 1"
/>
<img
class="brand-logo"
src="./assets/images/brands/brand-1-2.png"
alt="brand 2"
/>
<img
class="brand-logo"
src="./assets/images/brands/brand-1-3.png"
alt="brand 3"
/>
<img
class="brand-logo"
src="./assets/images/brands/brand-1-4.png"
alt="brand 4"
/>
<img
class="brand-logo"
src="./assets/images/brands/brand-1-5.png"
alt="brand 5"
/>
<img
class="brand-logo"
src="./assets/images/brands/brand-1-3.png"
alt="brand 1"
/>
</div>
</div>
</section>
<!-- Blogs section -->
<section id="blogs" class="d-flex flex-column justify-content-center">
<header class="section-header">Blogs</header>
<h3 class="headline text-center">Latest Blogs & News</h3>
<div
class="blogs-container d-flex flex-wrap justify-content-center my-4"
>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item1"
>
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/2191425/pexels-photo-2191425.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Olivia Rhye • 20 Sep 2023
</div>
<div class="blog-title text-light fw-bold">
Agriculture miracle you don't know
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 7
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 1
</div>
</div>
</a>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item2"
>
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/442589/pexels-photo-442589.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Paul Ahua • 30 May 2023
</div>
<div class="blog-title text-light fw-bold">
By drone can do better than you
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 11
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 3
</div>
</div>
</a>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item3"
>
<div class="blog-title">
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/949211/pexels-photo-949211.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Met John • 09 Jul 2023
</div>
<div class="blog-title text-light fw-bold">
Agriculture Miracle you
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 9
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 2
</div>
</div>
</a>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item4"
>
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/18287415/pexels-photo-18287415/free-photo-of-pumpkins-on-a-street-market.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Olivia Rhye • 20 Sep 2023
</div>
<div class="blog-title text-light fw-bold">
Agriculture miracle you don't know
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 7
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 1
</div>
</div>
</a>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item5"
>
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/265216/pexels-photo-265216.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Paul Ahua • 30 May 2023
</div>
<div class="blog-title text-light fw-bold">
Doubtful on striking required point
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 11
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 3
</div>
</div>
</a>
<a
href="#blogs"
class="blog-items m-3 position-relative"
id="blog-item6"
>
<div class="blog-title">
<div class="blog-image w-100">
<img
class="w-100"
src="https://images.pexels.com/photos/2878836/pexels-photo-2878836.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt=""
/>
</div>
</div>
<div class="blog-texts">
<div class="blog-user-name text-light fw-bold mb-1">
Met John • 09 Jul 2023
</div>
<div class="blog-title blog-title text-light fw-bold">
Agriculture Miracle you
<i class="bi bi-arrow-up-right ms-1"></i>
</div>
<p>
There are lorem ipsum is simply free many variations of ipsum
the majority suffered.
</p>
</div>
<div class="extra-social d-flex flex-row ms-1 my-2">
<div class="like me-4 px-2">
<i class="fa-regular fa-heart me-1"></i> 9
</div>
<div class="comment me-3 px-2">
<i class="fa-regular fa-comments me-1"></i> 2
</div>
</div>
</a>
</div>
<a href="#blogs" class="btn mx-auto yg-btn mb-5">View More</a>
</section>
<!-- Contact section -->
<section id="contact">
<header class="section-header">Let's Talk</header>
<!-- FAQ section -->
<div class="faq-section my-4">
<h3 class="headline text-center">FAQs</h3>
<div
class="faq-container d-flex flex-row flex-wrap justify-content-center"
>
<div class="image pe-2">
<img
class="w-100"
src="https://images.pexels.com/photos/5231239/pexels-photo-5231239.jpeg"
alt=""
/>
</div>
<div class="accordion-container w-50 ps-2">
<p class="head-para pt-3 ps-md-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Exercitationem eius soluta facere eos veritatis nihil qui ipsa
rem! Magni, sint eum. Excepturi natus ut, facere ipsam
necessitatibus delectus quam blanditiis!
</p>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed fw-bold"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
aria-expanded="false"
aria-controls="collapseOne"
>
Do I need a business plan?
</button>
</h2>
<div
id="collapseOne"
class="accordion-collapse collapse"
data-bs-parent="#accordionExample"
>
<div class="accordion-body rounded-bottom">
<p>
Continue building numerous of at relation in margaret.
Lasted engage roused mother an am at. Other early
while if by do to. Missed living excuse as be. Cause
heard fat above first time achivement. Discourse
unwilling am no described dejection incommode.
</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed fw-bold"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
How long should a business plan be?
</button>
</h2>
<div
id="collapseTwo"
class="accordion-collapse collapse"
data-bs-parent="#accordionExample"
>
<div class="accordion-body rounded-bottom">
<p>
Continue building numerous of at relation in margaret.
Lasted engage roused mother an am at. Other early
while if by do to. Missed living excuse as be. Cause
heard fat above first time achivement. Discourse
unwilling am no described dejection incommode.
</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button
class="accordion-button collapsed fw-bold"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
Where do I start?
</button>
</h2>
<div
id="collapseThree"
class="accordion-collapse collapse"
data-bs-parent="#accordionExample"
>
<div class="accordion-body rounded-bottom">
<p>
Continue building numerous of at relation in margaret.
Lasted engage roused mother an am at. Other early
while if by do to. Missed living excuse as be. Cause
heard fat above first time achivement. Discourse
unwilling am no described dejection incommode.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Get in touch section -->
<div
class="get-in-touch d-flex flex-column flex-md-row justify-content-center px-2 px-md-5"
>
<div class="contact-details my-4 mx-2 fw-bold w-100 w-md-50">
<h3 class="headline text-light">Get in Touch</h3>
<p>
Lorem ipsum dolor sit amet, conse ctetur adipisicing elit sed do
eiusm od tempor.
</p>
<div class="location d-flex flex-row">
<div class="icon me-4 mt-2">
<i class="fa-solid fa-map-location-dot"></i>
</div>
<div class="mt-4">
<p>Visit us</p>
<p>R-11, Bhartia Tower, Cuttack, Odisha</p>
</div>
</div>
<div class="mail d-flex flex-row">
<div class="icon me-4 mt-2">
<i class="fa-solid fa-envelope-open-text"></i>
</div>
<div class="mt-4">
<p>Email address</p>
<p>needhelp@agrogreen.com</p>
</div>
</div>
<div class="number d-flex flex-row">
<div class="icon me-4 mt-2">
<i class="fa-solid fa-headset"></i>
</div>
<div class="mt-4">
<p>Call now</p>
<p>+91 9999 8888</p>
</div>
</div>
</div>
<form class="p-2 my-4 w-100 w-md-50">
<div class="d-flex justify-content-between mb-4 w-100">
<input
type="text"
id="name"
class="rounded w-50 me-2 me-md-4"
placeholder="Your Name"
required
/>
<input
type="email"
id="email"
class="rounded w-50 ms-2 ms-md-4"
placeholder="Email Address"
required
/>
</div>
<div class="d-flex justify-content-between mb-4 w-100">
<input
type="number"
id="number"
class="rounded w-50 me-2 me-md-4"
placeholder="Phone Number"
required
/>
<input
type="text"
id="subject"
class="rounded w-50 ms-2 ms-md-4"
placeholder="Subject"
required
/>
</div>
<div class="w-100">
<textarea
name="message"
id="message"
class="rounded mb-4 w-100"
rows="4"
placeholder="Write Message"
required
></textarea>
</div>
<button
class="btn btn-warning rounded position-relative"
type="submit"
>
Send Message
<i class="fa-solid fa-paper-plane ms-2"></i>
</button>
</form>
</div>
</section>
</main>
<!-- Back-to-top icon -->
<a href="#" class="back-to-top">
<i class="fa-solid fa-chevron-up p-3 yg-btn"></i>
</a>
<!-- Footer Section -->
<footer class="py-5 px-2 px-md-5">
<div class="row">
<div class="col-md-6 col-lg-4 mb-3">
<a class="navbar-brand" href="#">
<img
src="./assets/images/brand-logo.png"
alt="Logo"
width="50"
height="50"
class="d-inline-block align-text-top"
/>
<span class="brand-name ms-3">AGRO<span>GREEN</span></span>
</a>
<p class="mt-2 lh-sm text-muted">
Happen active county. Winding morning ambition shyness evident to
poor. Because elderly new to the point to main success.
</p>
<p class="text-muted">
<i class="bi bi-geo-alt-fill"></i> Cuttack, Odisha, India
</p>
<a href="#" class="mail-id me-5 text-decoration-none text-muted"
><i class="bi bi-envelope-fill"></i>
needhelp@agrogreen.com</a
>
</div>
<div class="explore-sec col-md-6 col-lg-4 mb-3">
<h5 class="text-uppercase fw-bold">Explore</h5>
<div class="d-flex flex-row">
<div class="w-50">
<ul class="nav flex-column fw-bold">
<li class="nav-item mb-2">
<a href="#" class="nav-link p-0">Home</a>
</li>
<li class="nav-item mb-2">
<a href="#about" class="nav-link p-0">About</a>
</li>
<li class="nav-item mb-2">