-
Notifications
You must be signed in to change notification settings - Fork 0
/
marketing.html
904 lines (870 loc) · 35 KB
/
marketing.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
<!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" >
<title>Buzz Makers</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-icons.css">
<link rel="stylesheet" href="css/custom.css" >
<link rel="stylesheet" href="css/responsive.css" >
<link rel="stylesheet" href="css/slick.css" >
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid responsive-container">
<div class="mobile-nav">
<a class="navbar-brand pt-0" href="index.html">
<img src="./images/logo.svg" class="logo" alt="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#buzzmenu"
aria-controls="buzzmenu" aria-expanded="false" aria-label="Toggle navigation">
Menu
</button>
</div>
<div class="desktop-menu">
<ul class="navbar-nav ms-auto mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Services
</a>
<ul class="dropdown-menu">
<li class="arrow-up">
<div></div>
</li>
<li>
<a class="dropdown-item" href="strategy.html">Strategy</a>
</li>
<li>
<a class="dropdown-item" href="marketing.html">Content</a>
</li>
<li><a class="dropdown-item" href="technology.html">Technology</a></li>
<li><a class="dropdown-item" href="design.html">Design</a></li>
<li><a class="dropdown-item" href="studio.html">Buzz Studio</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="work.html">Our Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blogs.html">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="news.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="careers.html">Careers</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- collpase menu for mobile start -->
<div class="collapse mobile-menu-area" id="buzzmenu">
<img src="./images/logo.svg" style="width:125px ;" alt="logo">
<ul class="navbar-nav ms-auto mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Services
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="strategy.html">Strategy</a></li>
<li><a class="dropdown-item" href="marketing.html">Marketing</a></li>
<li><a class="dropdown-item" href="technology.html">Technology</a></li>
<li><a class="dropdown-item" href="design.html">Design</a></li>
<li><a class="dropdown-item" href="studio.html">Buzz Studio</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="work.html">Our Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blogs.html">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="news.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="careers.html">Careers</a>
</li>
<li class="close-menu-btn">
<a href="#" data-bs-toggle="collapse" data-bs-target="#buzzmenu" aria-expanded="false" aria-controls="buzzmenu"><i
class="bi bi-x-circle-fill"></i></a>
</li>
</ul>
</div>
<!-- collpase menu for mobile end -->
<!-- section header-image -->
<section class="pt-5 header-hero-section-marketing">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="content-of-marketing text-white">
<h1>Marketing</h1>
<p>
It is A Long Established Fact That A Reader Will Be Distracted
By The Readable Content Of A Page When Looking At Its Layout.
</p>
<a href="#" class="btn btn-buzz-connect-blue">Let's Connect</a>
</div>
</div>
<div class="col-md-6 marketing-img-container text-end">
<img src="./images/Marketing/marketing-header.svg" class="marketing-img box-animate" alt="marketing-header">
</div>
</div>
</div>
</section>
<!-- section featured -->
<section class="featured-secondary-slider responsive-container">
<div class="container">
<div class="sliderfeature-secondary">
<div>
<img src="images/clients/Baaya.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/bikgai.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_01.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_02.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_03.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_04.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_05.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_06.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_07.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_08.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_10.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_11.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_13.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_14.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_15.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_16.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_17.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_21.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_22.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_24.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_25.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_29.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_30.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_31.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_32.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_33.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_34.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_35.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_36.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_37.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_38.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_39.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_40.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_41.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_42.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_43.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_44.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_45.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_46.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_47.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_48.webp" loading="lazy" alt="Clients">
</div>
<div>
<img src="images/clients/Clients-Logo-Collage_rev2_49.webp" loading="lazy" alt="Clients">
</div>
</div>
</div>
</section>
<!-- strategies section strat-->
<section class="marketing-section responsive-container">
<div class="container">
<div class="row list-columns align-items-center reveal">
<div class="col-md-5 text-center">
<img src="images/Marketing/social-media-marketing.svg" style="width:80% ;" alt="social-media-marketing">
</div>
<div class="col-md-7 content-marketing">
<h1>Social Media marketing</h1>
<p>
We craft social-first strategies for our brands. Through social
listening, in-house research and community engagement we stay
ahead of the ever-changing landscape and deliver an unparalleled
organic and paid social media service.
</p>
<ul class="list-content">
<li>Content Marketing</li>
<li>Response Management</li>
<li>Social Analytics</li>
<li>Design</li>
</ul>
</div>
</div>
<div class="row list-columns align-items-center reveal">
<div class="col-md-5 text-center">
<img src="images/Marketing/influencer-marketing.svg" style="width:60%;" class="me-4" alt="influencer-marketing">
</div>
<div class="col-md-7 content-marketing">
<h1>Influencer Marketing</h1>
<p>
Right selection of influencers with the correct communication
strategy can do wonders for your social reach.We help brands do
just that! We select the right influencers using various
engagement metrics, reach out to them, negotiate with them on your
behalf and get campaigns executed.
</p>
<ul class="list-content">
<li>Campaign Planning</li>
<li>Content Management</li>
<li>Photography & Videography</li>
<li>Space Design</li>
</ul>
</div>
</div>
<div class="row list-columns align-items-center reveal">
<div class="col-md-5 text-center">
<img src="images/Marketing/performance-marketing.svg" class="w-75" alt="performance-marketing">
</div>
<div class="col-md-7 content-marketing">
<h1>Performance Marketing</h1>
<p>
Using our vast experience in running performance campaigns, we
provide an array of services to use the most popular platforms &
tactics to achieve leads and conversations for your business.
</p>
<ul class="list-content">
<li>Lead Generation</li>
<li>Retargeting</li>
<li>Trending Activities</li>
</ul>
</div>
</div>
</div>
</section>
<!-- strategies section end -->
<!-- section case studies starts -->
<section class="case-studies">
<div class="container">
<h1 class="text-white">Case Studies</h1>
</div>
<div class="casestudies-container pc-case-study responsive-container">
<div class="casestudies reveal">
<div>
<img src="images/OurWork/snap1.webp" class="rounded" style="width:95% ;" alt="snap1">
</div>
<div>
<img src="images/OurWork/snap.webp" class="rounded" style="width:95% ;" alt="snap">
</div>
<div>
<img src="images/OurWork/snap1.webp" class="rounded" style="width:95% ;" alt="snap1">
</div>
<div>
<img src="images/OurWork/snap.webp" class="rounded" style="width:95% ;" alt="snap">
</div>
</div>
<div class="side-effects"></div>
</div>
<div class="casestudies-container mobile-case-study text-center">
<img src="images/OurWork/snap1.webp" style="width:85% ;" alt="snap1" class="rounded mb-3" >
<img src="images/OurWork/snap.webp" style="width:85% ;" alt="snap" class="rounded mb-3" >
<img src="images/OurWork/snap1.webp" style="width:85% ;" alt="snap1" class="rounded" >
</div>
</section>
<!-- section case studies ends -->
<!-- our process starts -->
<section class="our-process">
<div class="container">
<h1>Our Process</h1>
<div class="position-relative reveal">
<img src="images/stratey/our-process.webp" class="w-100 pc-process" alt="our-process">
<div class="row pc-process">
<div class="col-md-2">
<div class="process-icons-one text-center">
<img src="images/arrow.webp" class="process-arrow" alt="arrow">
<span>Brand Research</span>
<img src="images/ProcessIcons/png/brand-launch.webp" alt="brand-launch">
</div>
</div>
<div class="col-md-2">
<div class="process-icons-two text-center">
<img src="images/ProcessIcons/png/track-analyze-optimize.webp" alt="track-analyze-optimize">
<span>Brand Strategy</span>
<img src="images/arrow.webp" class="process-arrow" alt="arrow">
</div>
</div>
<div class="col-md-2">
<div class="process-icons-three text-center">
<img src="images/arrow.webp" class="process-arrow" alt="arrow">
<span>Brand Identity</span>
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
</div>
</div>
<div class="col-md-2">
<div class="process-icons-four text-center">
<img src="images/ProcessIcons/png/Design.webp" alt="design">
<span>Brand Tool</span>
<img src="images/arrow.webp" class="process-arrow" alt="arrow">
</div>
</div>
<div class="col-md-2">
<div class="process-icons-five text-center">
<img src="images/arrow.webp" class="process-arrow" alt="arrow">
<span>Brand Launch</span>
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
</div>
</div>
<div class="col-md-2">
<div class="process-icons-six text-center">
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
<span>Brand Building</span>
</div>
</div>
</div>
<img src="images/mobile.webp" class="w-100 mobile-process" alt="mobile">
<div class="row mobile-process">
<div class="process-icons-one text-center">
<span>Brand Research</span>
<img src="images/ProcessIcons/png/brand-launch.webp" alt="brand-launch">
</div>
<div class="process-icons-two text-center">
<span>Brand Strategy</span>
<img src="images/ProcessIcons/png/track-analyze-optimize.webp" alt="track-analyze-optimize">
</div>
<div class="process-icons-three text-center">
<span>Brand Identity</span>
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
</div>
<div class="process-icons-four text-center">
<span>Brand Tool</span>
<img src="images/ProcessIcons/png/Design.webp" alt="design">
</div>
<div class="process-icons-five text-center">
<span>Brand Launch</span>
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
</div>
<div class="process-icons-six text-center">
<span>Brand Building</span>
<img src="images/ProcessIcons/png/brand-positioning.webp" alt="brand-positioning">
</div>
</div>
</div>
</div>
</section>
<!-- our process ends -->
<!-- why section starts -->
<section class="why-buzz">
<div class="container">
<h1>Why<br >Buzz Makers?</h1>
<div class="row justify-content-end gy-3 reveal">
<div class="col-md-5">
<div class="why-content">
<label>Clear communication</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
<div class="col-md-5">
<div class="why-content">
<label>Scalable team</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
<div class="col-md-5">
<div class="why-content">
<label>Complete control</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
<div class="col-md-5">
<div class="why-content">
<label>Transparent conduct</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
<div class="col-md-5">
<div class="why-content">
<label>End-to-end services</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
<div class="col-md-5">
<div class="why-content">
<label>Intrinsically agile</label>
<p>
Efficient Communication with and within teams means no loose
ends for you. With language no bar, you are always on the same
page with developers.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- why section ends -->
<!-- Industries we works starts -->
<section class="ind-works">
<div class="text-center container reveal">
<h1>Industries We Work</h1>
<div class="ind-content">
<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>
<div class="mt-5">
<ul class="nav nav-pills mb-3 tabs-ind" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-finance-tab" data-bs-toggle="pill" data-bs-target="#pills-finance"
type="button" role="tab" aria-controls="pills-finance" aria-selected="true">Finance</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-travel-tab" data-bs-toggle="pill" data-bs-target="#pills-travel"
type="button" role="tab" aria-controls="pills-travel" aria-selected="false">Travel</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-health-tab" data-bs-toggle="pill" data-bs-target="#pills-health"
type="button" role="tab" aria-controls="pills-health" aria-selected="false">Healthcare</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-finance" role="tabpanel" aria-labelledby="pills-finance-tab">
<div class="ind-tab-details">
<div>
<img src="images/computer.webp" class="img-tabs" alt="computer">
<img src="images/line-bar.svg" class="img-tabs-pattern" alt="line-bar">
</div>
<div class="info-box-ind-tab">
<h2>Finance</h2>
<p>It is long established fact that a reader will be Distracted by the readable content of a page when
looking at its layout.
The point of using Lorem ipsum is that it has a more-or-less normal distribution of letters, as
opposed to using 'Content here.
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-travel" role="tabpanel" aria-labelledby="pills-travel-tab">
<div class="ind-tab-details">
<div>
<img src="images/computer.webp" class="img-tabs" alt="computer">
<img src="images/line-bar.svg" class="img-tabs-pattern" alt="line-bar">
</div>
<div class="info-box-ind-tab">
<h2>Travel</h2>
<p>It is long established fact that a reader will be Distracted by the readable content of a page when
looking at its layout.
The point of using Lorem ipsum is that it has a more-or-less normal distribution of letters, as
opposed to using 'Content here.
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-health" role="tabpanel" aria-labelledby="pills-health-tab">
<div class="ind-tab-details">
<div>
<img src="images/computer.webp" class="img-tabs" alt="computer">
<img src="images/line-bar.svg" class="img-tabs-pattern" alt="line-bar">
</div>
<div class="info-box-ind-tab">
<h2>Healthcare</h2>
<p>It is long established fact that a reader will be Distracted by the readable content of a page when
looking at its layout.
The point of using Lorem ipsum is that it has a more-or-less normal distribution of letters, as
opposed to using 'Content here.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Industries we works ends -->
<!-- section testimonials -->
<section class="testimonials responsive-container">
<div class="text-center reveal">
<h2 class="hindi2"><span>#</span>क्या कहना</h2>
<h1>Testimonials</h1>
<div class="testimonials-content">
<p>
We love to buzz, they love the buzz! Client love is the reason<br >
why we love to do what we do.
</p>
<div class="yellow-box-ui"></div>
</div>
</div>
<div class="container reveal">
<div class="testimonialsslider pt-5">
<div>
<div class="testimonial-box mb-5">
<div class="row">
<div class="col-md-3 col-3">
<img src="images/admin.webp" class="test-photo" alt="admin">
</div>
<div class="col-md-9 col-9">
<p>
Movie-marketing an digital a totally different ball game and
we're pleased to have associated with Buzz Makers for some of
our major titles. Their passion for cinema is evident in
creative solutions and the end results.
</p>
<div class="testimonial-author">
<label>Sufiyan Khan</label><br >
<span>Sr.Marketing Manager</span><br >
<span>Jungle Pictures</span>
</div>
</div>
</div>
<!-- <div class="text-center">
<a href="#" class="arrow-on-hover">
<i class="bi bi-arrow-right-circle-fill"></i>
</a>
</div> -->
</div>
</div>
<div>
<div class="testimonial-box mb-5">
<div class="row">
<div class="col-md-3 col-3">
<img src="images/admin.webp" class="test-photo" alt="admin">
</div>
<div class="col-md-9 col-9">
<p>
Buzz Makers delivered what they promised, highly creative and
flexible team often worked from our office for collaborative
work. they've done a good job with both Online creative
requirements.
</p>
<div class="testimonial-author">
<label>Pratik Shah</label><br >
<span>Head of Global Marketing</span><br >
<span>InstaRem</span>
</div>
</div>
</div>
<!-- <div class="text-center">
<a href="#" class="arrow-on-hover">
<i class="bi bi-arrow-right-circle-fill"></i>
</a>
</div> -->
</div>
</div>
<div>
<div class="testimonial-box mb-5">
<div class="row">
<div class="col-md-3 col-3">
<img src="images/admin.webp" class="test-photo" alt="admin">
</div>
<div class="col-md-9 col-9">
<p>
Krishnaa and his team at Buzz Makers understand how to turn
marketing objectives into creatives that deliver; we
associated with the agency for a range of requirements that
included Print Ads, Campaign Landing pages, retailers, and
social media creatives. Despite the volume of work, the quick
turnaround time is also very commendable.
</p>
<div class="testimonial-author">
<label>Parvathy Raja</label><br >
<span>Associate Marketing Director</span><br >
<span>Craftsvilla</span>
</div>
</div>
</div>
<!-- <div class="text-center">
<a href="#" class="arrow-on-hover">
<i class="bi bi-arrow-right-circle-fill"></i>
</a>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- end -->
<!-- section careers -->
<section class="careers">
<div class="text-center mt-3 reveal">
<h2 class="hindi2"><span>#</span>उड़ान</h2>
<h1>Careers</h1>
<div class="careers-content">
<p class="title-tags">
Think you got what it takes to get buzzing with us? Apply Now!
</p>
</div>
</div>
<div class="container reveal">
<div class="careersslider pt-3">
<div>
<div class="careers-box mb-5 img-ui-icon-pen">
<div class="career-author">
<label>Content Writer</label><br >
<span>3 to 4 Years Experience</span>
</div>
<a href="#" class="btn btn-buzz">Menu</a>
<img src="images/title-point.svg" class="img-icon" alt="title-point">
</div>
</div>
<div>
<div class="careers-box mb-5 img-ui-icon-camera">
<div class="career-author">
<label>Graphic Designer</label><br >
<span>3 to 4 Years Experience</span>
</div>
<a href="#" class="btn btn-buzz">Menu</a>
<img src="images/title-point.svg" class="img-icon" alt="title-point">
</div>
</div>
<div>
<div class="careers-box mb-5 img-ui-icon-pen">
<div class="career-author">
<label>Content Writer</label><br >
<span>3 to 4 Years Experience</span>
</div>
<a href="#" class="btn btn-buzz">Menu</a>
<img src="images/title-point.svg" class="img-icon" alt="title-point">
</div>
</div>
<div>
<div class="careers-box mb-5 img-ui-icon-camera">
<div class="career-author">
<label>Graphic Designer</label><br >
<span>3 to 4 Years Experience</span>
</div>
<a href="#" class="btn btn-buzz">Menu</a>
<img src="images/title-point.svg" class="img-icon" alt="title-point">
</div>
</div>
</div>
</div>
</section>
<!-- end -->
<!-- faqs -->
<section class="faqs">
<div class="text-center text-white mb-5 reveal">
<h2 class="hindi2"><span>#</span>गहराइयाँ</h2>
<h1 class="text-white">FAQ's</h1>
</div>
<div class="container reveal">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
Accordion Item #1
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default,
until the collapse plugin adds the appropriate classes that we
use to style each element. These classes control the overall
appearance, as well as the showing and hiding via CSS
transitions. You can modify any of this with custom CSS or
overriding our default variables. It's also worth noting that
just about any HTML can go within the .accordion-body, though
the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Accordion Item #2
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default,
until the collapse plugin adds the appropriate classes that we
use to style each element. These classes control the overall
appearance, as well as the showing and hiding via CSS
transitions. You can modify any of this with custom CSS or
overriding our default variables. It's also worth noting that
just about any HTML can go within the .accordion-body, though
the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Accordion Item #3
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">
This is the first item's accordion body. It is shown by default,
until the collapse plugin adds the appropriate classes that we
use to style each element. These classes control the overall
appearance, as well as the showing and hiding via CSS
transitions. You can modify any of this with custom CSS or
overriding our default variables. It's also worth noting that
just about any HTML can go within the .accordion-body, though
the transition does limit overflow.
</div>
</div>
</div>
</div>
<div>
<a href="#" class="text-white">READ ALL FAQs<i class="bi bi-arrow-right ms-3"></i></a>
</div>
<div class="text-center text-white mb-3 fw-bold faq-content">
<h2>Now that you've scrolled to the bottom of the page.</h2>
<h2>We believe that we've got you excited.</h2>
<h2>Let's get your brand buzzing?</h2>
<a href="#" class="btn btn-buzz mt-2" style="padding: 7px 20px !important">Get in Touch</a>
</div>
</div>
</section>
<!-- faqs end -->
<!-- footer section starts -->
<section class="footer">
<div class="container">
<div class="row justify-content-between py-4">
<div class="col-md-6 footer-logo">
<img src="images/logo.svg" style="width:20% ;" alt="logo"><br >
<label>[email protected]</label>
</div>
<div class="col-md-6">
<div class="text-end">
<ul class="footer-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Case Studies</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="social-icons text-end">
<a href="#"><i class="bi bi-facebook"></i></a>
<a href="#"><i class="bi bi-twitter"></i></a>
<a href="#"><i class="bi bi-instagram"></i></a>
<a href="#"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="credits py-2">
<label>Copyright © BuzzMakers</label>
</div>
</section>
<!-- footer section ends -->
<script src="js/popper.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/slick.js"></script>
<script src="js/custom.js"></script>
</body>
</html>