forked from sandy-ali-basha/adsamy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
1469 lines (1428 loc) · 66.2 KB
/
work.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- for social media sharing links -->
<meta name="theme-color" content="#439299" />
<meta property="og:description" content="description" />
<meta property="og:title" content="Adsamy" />
<meta property="og:type" content="website" />
<meta property="og:url" content="website link" />
<meta property="og:image" content="website image" />
<!-- bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<!-- scss -->
<link rel="stylesheet" href="./scss/main.css" />
<!-- Arabic-css -->
<link rel="stylesheet" href="./css/AR.css" />
<!-- Arabic-css -->
<!-- css -->
<link rel="stylesheet" href="./css/style.css" />
<!-- Custom Snippets -->
<link rel="stylesheet" href="./css/sticky_buttons.css" />
<link rel="stylesheet" href="./css/buttons.css" />
<!-- swiper -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
<title>ADSAMY | Works</title>
<!-- jquery -->
<script
src="https://code.jquery.com/jquery-3.6.3.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<!-- bootstrap -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
</head>
<body class="Blog bg-light">
<!-- Navbar Include -->
<nav
class="navbar sticky-top navbar-expand-lg bg-dark-blue text-white py-2"
id="navbar_container"
></nav>
<!-- --Navbar Include -->
<header
class="d-flex flex-column justify-content-center align-items-center gap-3 px-4 px-md-0"
>
<h2 class="text-white fs-1">Our Works</h2>
<h5 class="text-white fs-6">
Explore the best in PPC, SEO and Web Design by SmartSites. Use the
filters to narrow down your search.
</h5>
<div
class="Box d-flex gap-2 justify-content-center align-items-center bg-white p-2 ps-4 search w-75"
>
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" class="form-control" placeholder="search article" />
<div class="btn btn-primary">Search</div>
</div>
<div class="popularTags flex-wrap d-flex justify-content-between gap-3">
<p class="text-white">Popular Tags:</p>
<div class="d-flex gap-2">
<div class="btn btn-glass text-white fs-6">Design</div>
<div class="btn btn-glass text-white fs-6">User Experince</div>
<div class="btn btn-glass text-white fs-6">User Interface</div>
</div>
</div>
</header>
<div class="container">
<!-- filter -->
<section class=" ">
<div class="container py-5">
<div class="row">
<div class="col-lg-6">
<div class="filters">
<ul class="nav mb-2">
<li data-filter="*" class="active btn btn-secondary mb-2">
All
</li>
<li data-filter=".MobileApp" class="btn btn-secondary mb-2">
Mobile App Design
</li>
<li data-filter=".WebDesign" class="btn btn-secondary mb-2">
Web Design
</li>
<li
data-filter=".GraphicDesign"
class="btn btn-secondary mb-2"
>
Graphic Design
</li>
</ul>
<p>
We share common trends, strategies, ideas, opinions, and
stories from the team behind the company.
</p>
</div>
</div>
<div class="col-lg-6 text-end">
<a href="/" class="btn btn-outline-warning">View all</a>
</div>
<div class="col-lg-12">
<div class="row grid">
<!-- Card 1 -->
<div class="item MobileApp col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image1.jpg) center/cover no-repeat;
"
>
<div
class="p-5 d-flex flex-column justify-content-between h-80"
>
<div class="chip text-white bg-yellow">New</div>
<div>
<h3 class="text-white mt-4">
Designing a Mobile App for Beginners
</h3>
<div class="text-white text-end">20 June</div>
<div class="d-flex gap-4 mt-2">
<img
src="./imgs/person_1.jpg"
class="circle"
alt=""
/>
<div class="my-auto">
<a href="#" class="text-white">Alex Johnson</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">
verified user
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="item WebDesign col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image2.jpg) center/cover no-repeat;
"
>
<div
class="p-5 d-flex flex-column justify-content-between h-80"
>
<div class="chip text-white bg-yellow">Trending</div>
<div>
<h3 class="text-white mt-4">
Mastering Responsive Web Design
</h3>
<div class="text-white text-end">15 April</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Sara Adams</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">
verified user
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="item GraphicDesign col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image3.jpg) center/cover no-repeat;
"
>
<div
class="p-5 d-flex flex-column justify-content-between h-80"
>
<div class="chip text-white bg-yellow">Featured</div>
<div>
<h3 class="text-white mt-4">
Creating Stunning Graphic Designs
</h3>
<div class="text-white text-end">01 September</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">David Lee</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">
verified user
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="item WebDesign col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image4.jpg) center/cover no-repeat;
"
>
<div
class="p-5 d-flex flex-column justify-content-between h-80"
>
<div class="chip text-white bg-yellow">New</div>
<div>
<h3 class="text-white mt-4">
Web Design Trends in 2024
</h3>
<div class="text-white text-end">10 August</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Monica Green</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">
verified user
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<nav aria-label="Page navigation example" class="mt-3">
<ul class="pagination justify-content-center">
<li class="page-item">
<a class="page-link" href="#" id="prev"
><i class="fa-solid fa-chevron-left"></i
></a>
</li>
<li class="page-item">
<a class="page-link" href="#" id="page1">1</a>
</li>
<li class="page-item">
<a class="page-link" href="#" id="page2">2</a>
</li>
<li class="page-item">
<a class="page-link" href="#" id="page3">3</a>
</li>
<li class="page-item">
<a class="page-link" href="#" id="next"
><i class="fa-solid fa-chevron-right"></i
></a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</section>
<section class="mb-5">
<div class="box mt-3 d-flex justify-content-between">
<div>
<h2 class="text-yellow fw-bold w-75">case studies</h2>
<p class="text-primary">
we share commone trends, Lorem ipsum dolor, sit amet consectetur
adipisicing elit. Pariatur, perspiciatis!
</p>
</div>
<button
class="btn btn-outlined text-yellow border-warning fs-small mt-auto"
>
view all <i class="fa-solid fa-arrow-right text-yellow ms-3"></i>
</button>
</div>
<div class="position-relative mt-5">
<div class="mySwiper swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide bg-white border-radius-12">
<div class="row">
<div class="col-md-6">
<img src="./imgs/image1.jpg" class="w-100 leftImg" alt="" />
</div>
<div class="col-md-6">
<div
class="p-2 h-100 d-flex flex-column justify-content-around pe-4"
>
<div class="chip">FEATURED</div>
<h3 class="text-primary mt-4 fw-bold">
5 Minute Cleanup
</h3>
<p class="text-primary mt-4">
One of the easiest cleaning habits I’ve found when
you’re overwhelmed with mess and lack of time, is a 5
Minute Cleanup! Here’s how I do it in partnership with
Ecowell’s Lulu Wet/Dry Vacuum…
</p>
<div class="d-flex justify-content-between mt-2">
<div class="d-flex gap-4">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="http://" class="text-primary"
>Viola Monisa</a
>
<div class="d-flex gap-2">
<i class="fa-solid fa-check p-1"></i>
<div class="text-secondary">verfied user</div>
</div>
</div>
</div>
<div>02 May</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide bg-white border-radius-12">
<div class="row">
<div class="col-md-6">
<img src="./imgs/image2.jpg" class="w-100 leftImg" alt="" />
</div>
<div class="col-md-6">
<div
class="p-2 pe-4 h-100 d-flex flex-column justify-content-around"
>
<div class="chip">FEATURED</div>
<h3 class="text-primary mt-4 fw-bold">
Four Healthy 5 Minute Breakfast Ideas
</h3>
<p class="text-primary mt-4">
What if you spent just a few extra minutes to have a
family breakfast? I’m sharing a few fun and delicious
ideas to help make that happen for your family.
</p>
<div class="d-flex justify-content-between mt-2">
<div class="d-flex gap-4">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="http://" class="text-primary"
>Viola Monisa</a
>
<div class="d-flex gap-2">
<i class="fa-solid fa-check p-1"></i>
<div class="text-secondary">verfied user</div>
</div>
</div>
</div>
<div>02 May</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Custom Navigation Buttons -->
<div class="swiper-button-prev">
<i class="fa-solid fa-arrow-left"></i>
</div>
<div class="swiper-button-next">
<i class="fa-solid fa-arrow-right"></i>
</div>
</div>
</div>
</section>
</div>
<!-- Watch Our Latest Project -->
<section class="text-center mb-5 LatestProject">
<div
class="d-flex align-items-start container p-5 flex-column flex-md-row"
>
<div class="tab-content" style="width: 70vw" id="v-pills-tabContent">
<div
class="tab-pane fade show active webDesign"
id="Behind-The"
role="tabpanel"
aria-labelledby="Behind-The"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show activ webDesign"
id="Video-Portfolio"
role="tabpanel"
aria-labelledby="Video-Portfolio"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show webDesign"
id="Cloud-Seeding"
role="tabpanel"
aria-labelledby="Cloud-Seeding"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show activ webDesign"
id="Nahdah-Construction"
role="tabpanel"
aria-labelledby="Nahdah-Construction"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show webDesign"
id="Surgery-Center"
role="tabpanel"
aria-labelledby="Surgery-Center"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show webDesign"
id="FLIR-MIDDLE"
role="tabpanel"
aria-labelledby="FLIR-MIDDLE"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
<div
class="tab-pane fade show webDesign"
id="Football-Match"
role="tabpanel"
aria-labelledby="Football-Match"
>
<div class="video-card w-100">
<video
id="video1"
poster="https://via.placeholder.com/351x200"
controls
class="w-100"
preload="none"
>
<source
src="https://sample-videos.com/video321/mp4/240/big_buck_bunny_240p_2mb.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<button class="play-btn" id="playButton1">
<i class="fas fa-play"></i>
</button>
<button class="play-btn" style="display: none" id="pausButton1">
<i class="fas fa-pause"></i>
</button>
</div>
</div>
</div>
<div
class="nav flex-column nav-pills me-3 navigateBtns"
id="v-pills-tab"
role="tablist"
aria-orientation="vertical"
>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center active"
id="Behind-The-tab"
data-bs-toggle="pill"
data-bs-target="#Behind-The"
type="button"
role="tab"
aria-controls="Behind-The"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Doleep Studios - Behind The Scenes
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="Video-Portfolio-tab"
data-bs-toggle="pill"
data-bs-target="#Video-Portfolio"
type="button"
role="tab"
aria-controls="Video-Portfolio"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Doleep Studios - 2020 Video Portfolio
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="Cloud-Seeding-tab"
data-bs-toggle="pill"
data-bs-target="#Cloud-Seeding"
type="button"
role="tab"
aria-controls="Cloud-Seeding"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Cloud Seeding Story of a life
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="Nahdah-Construction-tab"
data-bs-toggle="pill"
data-bs-target="#Nahdah-Construction"
type="button"
role="tab"
aria-controls="Nahdah-Construction"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Shafa Al Nahdah Construction
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="Surgery-Center-tab"
data-bs-toggle="pill"
data-bs-target="#Surgery-Center"
type="button"
role="tab"
aria-controls="Surgery-Center"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Burjeel Day Surgery Center
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="FLIR-MIDDLE-tab"
data-bs-toggle="pill"
data-bs-target="#FLIR-MIDDLE"
type="button"
role="tab"
aria-controls="FLIR-MIDDLE"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
FLIR MIDDLE EAST Facility
</div>
</button>
<button
class="nav-link px-2 py-3 d-flex gap-3 ps-3 align-items-center"
id="Football-Match-tab"
data-bs-toggle="pill"
data-bs-target="#Football-Match"
type="button"
role="tab"
aria-controls="Football-Match"
aria-selected="true"
>
<i class="fa-solid fa-circle-play text-white fs-3"></i>
<div class="fw-light text-start text-white">
Al Ahly vs A.S Roma Football Match Promoti…
</div>
</button>
</div>
</div>
</section>
<!-- all articles
-->
<div class="container">
<section>
<div class="box mt-5 d-flex justify-content-between">
<div>
<h2 class="text-yellow fw-bold">Social Media Posts</h2>
<p class="text-primary">
Recently, I’ve been converted to sparkly water. Not the flavored
kind, just pure sparkling water. It’s my favorite drink:
refreshing and special that feels well deserved at the end of a
the day.
</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image3.jpg) center/cover no-repeat;
"
>
<div class="p-5 d-flex flex-column justify-content-between h-80">
<div class="chip text-primary bg-white">FEATURED</div>
<div>
<h3 class="text-white mt-4">
How to prevent and protect yourself from carbon monoxide and
your family.
</h3>
<div class="text-white text-end">02 May</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Viola Monisa</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">verified user</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image4.jpg) center/cover no-repeat;
"
>
<div class="p-5 d-flex flex-column justify-content-between h-80">
<div class="chip text-primary bg-white">FEATURED</div>
<div>
<h3 class="text-white mt-4">
How to Make Tissue Paper Poppies
</h3>
<div class="text-white text-end">02 May</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/profile.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Viola Monisa</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">verified user</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image5.jpg) center/cover no-repeat;
"
>
<div class="p-5 d-flex flex-column justify-content-between h-80">
<div class="chip text-primary bg-white">FEATURED</div>
<div>
<h3 class="text-white mt-4">
How to prevent and protect yourself from carbon monoxide and
your family.
</h3>
<div class="text-white text-end">02 May</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/image5.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Viola Monisa</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">verified user</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image6.jpg) center/cover no-repeat;
"
>
<div class="p-5 d-flex flex-column justify-content-between h-80">
<div class="chip text-white bg-yellow">NEW</div>
<div>
<h3 class="text-white mt-4">
Secrets to the Best Baguette Sandwich
</h3>
<div class="text-white text-end">02 May</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/blog.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Viola Monisa</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">verified user</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mt-4">
<div
class="ImageCard"
style="
background: linear-gradient(
180deg,
rgba(114, 9, 183, 0) 0%,
rgba(24, 60, 86, 1) 100%
),
url(./imgs/image7.jpg) center/cover no-repeat;
"
>
<div class="p-5 d-flex flex-column justify-content-between h-80">
<div class="chip text-white bg-yellow">New</div>
<div>
<h3 class="text-white mt-4">
Gluten Free Chocolate Chip Zucchini and Sweet Potato Muffins
</h3>
<div class="text-white text-end">05 May</div>
<div class="d-flex gap-4 mt-2">
<img src="./imgs/image4.jpg" class="circle" alt="" />
<div class="my-auto">
<a href="#" class="text-white">Viola Monisa</a>
<div class="d-flex gap-2 mt-1">
<i class="fa-solid fa-check p-1"></i>
<div class="text-dark-secondary">verified user</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mb-5">
<button
class="btn btn-outlined text-white border-white fs-small mt-5 mx-auto"
>
view all <i class="fa-solid fa-arrow-right text-white ms-3"></i>
</button>
</div>
</section>
<!-- our team -->
</div>
<!-- Footer Include -->
<footer
class="text-center mt-0 text-lg-start text-white"
style="background-color: #1b2b44"
id="footer_container"
></footer>
<!-- --Footer Include -->
<!-- Sticky Button -->
<div class="sticky-container">
<ul class="sticky px-0">
<li
data-bs-toggle="modal"
data-bs-target="#exampleModal"
class="button-85"
role="button"
>
<img width="50" height="50" title="" alt="" src="./imgs/_logo.webp" />
<p>Got Quotation</p>
</li>
</ul>
</div>
<!-- --Sticky Button -->
<!-- Send Quotation Modal -->
<div
class="ContactUs"
style="padding-top: 0"
id="contact_modal_container"
></div>
<!-- Send Quotation Modal -->
<!-- End of .container -->
<!-- <div class="ContactUs">
<div class="getQuotation">
<div
class="qetquotationBtn"
style="cursor: pointer;"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
>
<img class="img" src="./imgs/profile.jpg" alt="" />
<div class="fs-5 text">get quotation</div>
</div>
<div
class="modal fade"
id="exampleModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div
class="modal-content d-flex align-items-center justify-content-center"
>
<section class="border-radius-12 p-3" style="width: 98%">
<div class="row">
<div class="col-md-6 pt-3 text-primary pe-2">
<h3 class="mb-2 " style="font-weight: 600;">
Achieve more with Digital Marketing
</h3>
<p class="mb-2">