-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1427 lines (1420 loc) · 64.4 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, user-scalable=no, initial-scale=1.0 maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./styles/style.css" />
<title>Positivus</title>
</head>
<body>
<header class="header">
<div class="header__inner container">
<a href="" class="header__logo logo">
<img
src="./images/logo.svg"
alt="Positivus"
class="logo__image"
width="220"
height="36"
loading="lazy"
/>
</a>
<nav class="header__menu hidden-mobile">
<ul class="header__menu-list">
<li class="header__menu-item">
<a href="" class="header__menu-link">About us</a>
</li>
<li class="header__menu-item">
<a href="" class="header__menu-link">Services</a>
</li>
<li class="header__menu-item">
<a href="" class="header__menu-link">Use Cases</a>
</li>
<li class="header__menu-item">
<a href="" class="header__menu-link">Pricing</a>
</li>
<li class="header__menu-item">
<a href="" class="header__menu-link">Blog</a>
</li>
</ul>
</nav>
<button
class="header__button button button--transparent hidden-mobile"
type="button"
>
Request a quote
</button>
<button
class="header__burger-button burger-button visible-mobile"
type="button"
onclick="mobileOverlay.showModal()"
>
<span class="visually-hidden">Open navigation menu</span>
</button>
</div>
</header>
<main class="content">
<section class="section section--hidden-x container">
<div class="section__body">
<div class="hero">
<div class="hero__main">
<div class="hero__body">
<h1 class="hero__title">
Navigating the digital landscape for success
</h1>
<div class="hero__description">
<p>
Our digital marketing agency helps businesses grow and
succeed online through a range of services including SEO,
PPC, social media marketing, and content creation.
</p>
</div>
<button class="hero__button button" type="button">
Book a consultation
</button>
</div>
<img
src="./images/hero-bg.svg"
alt=""
class="hero__image"
width="600"
height="515"
/>
</div>
<div class="hero__partners">
<h2 class="visually-hidden">Our partners</h2>
<ul class="hero__partners-list">
<li class="hero__partners-item">
<img
src="./images/partners/amazon.svg"
alt="Amazon"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
<li class="hero__partners-item">
<img
src="./images/partners/dribbble.svg"
alt="Dribbble"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
<li class="hero__partners-item">
<img
src="./images/partners/hubspot.svg"
alt="HubSpot"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
<li class="hero__partners-item">
<img
src="./images/partners/notion.svg"
alt="Notion"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
<li class="hero__partners-item">
<img
src="./images/partners/netflix.svg"
alt="Netflix"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
<li class="hero__partners-item">
<img
src="./images/partners/zoom.svg"
alt="Zoom"
class="hero__partners-image"
width="130"
height="48"
/>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section container">
<header class="section__header">
<h2 class="section__title puddle-bg">Services</h2>
<div class="section__description">
<p>
At our digital marketing agency, we offer a range of services to
help businesses grow and succeed online. These services include:
</p>
</div>
</header>
<div class="section__body">
<div class="services">
<ul class="services__list grid grid--2">
<li class="services__item">
<article class="service-card">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg">Search engine </span>
<span class="puddle-bg">optimization </span>
</h3>
<a href="" class="service-card__link">
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/1.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
<li class="services__item">
<article class="service-card service-card--accent-bg">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg puddle-bg--light"
>Pay-per-click</span
>
<span class="puddle-bg puddle-bg--light"
>advertising
</span>
</h3>
<a href="" class="service-card__link">
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/2.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
<li class="services__item">
<article class="service-card service-card--dark-bg">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg puddle-bg--light"
>Social Media
</span>
<span class="puddle-bg puddle-bg--light">Marketing </span>
</h3>
<a
href=""
class="service-card__link service-card__link--light"
>
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/3.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
<li class="services__item">
<article class="service-card">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg">Email </span>
<span class="puddle-bg">Marketing </span>
</h3>
<a href="" class="service-card__link">
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/4.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
<li class="services__item">
<article class="service-card service-card--accent-bg">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg puddle-bg--light">Content</span>
<span class="puddle-bg puddle-bg--light">Creation</span>
</h3>
<a href="" class="service-card__link">
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/5.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
<li class="services__item">
<article class="service-card service-card--dark-bg">
<div class="service-card__body">
<h3 class="service-card__title">
<span class="puddle-bg">Analytics and </span>
<span class="puddle-bg">Tracking </span>
</h3>
<a
href=""
class="service-card__link service-card__link--light"
>
<span class="service-card__link-icon-wrapper">
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</span>
<span class="service-card__link-label"> Learn more </span>
</a>
</div>
<img
src="./images/services/6.svg"
alt=""
class="service-card__image"
width="210"
height="170"
/>
</article>
</li>
</ul>
<div class="services__banner banner">
<div class="banner__inner">
<div class="banner__body">
<h3 class="banner__title">Let’s make things happen</h3>
<div class="banner__description">
<p>
Contact us today to learn more about how our digital
marketing services can help your business grow and succeed
online.
</p>
</div>
<button class="banner__button button" type="button">
Get your free proposal
</button>
</div>
<img
src="./images/banner-bg.svg"
alt=""
class="banner__image hidden-mobile"
width="494"
height="394"
/>
</div>
</div>
</div>
</div>
</section>
<section class="section section--hidden-x container">
<header class="section__header">
<h2 class="section__title puddle-bg">Case Studies</h2>
<div class="section__description">
<p>
Explore Real-Life Examples of Our Proven Digital Marketing Success
through Our Case Studies
</p>
</div>
</header>
<div class="section__body">
<div class="studies">
<ul class="studies__list">
<li class="studies__item">
<div class="studies__description">
<p>
For a local restaurant, we implemented a targeted PPC
campaign that resulted in a 50% increase in website traffic
and a 25% increase in sales.
</p>
</div>
<a href="" class="studies__link">
<span>Learn more</span>
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</a>
</li>
<li class="studies__item">
<div class="studies__description">
<p>
For a B2B software company, we developed an SEO strategy
that resulted in a first page ranking for key keywords and a
200% increase in organic traffic.
</p>
</div>
<a href="" class="studies__link">
<span>Learn more</span>
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</a>
</li>
<li class="studies__item">
<div class="studies__description">
<p>
For a national retail chain, we created a social media
marketing campaign that increased followers by 25% and
generated a 20% increase in online sales.
</p>
</div>
<a href="" class="studies__link">
<span>Learn more</span>
<svg
width="21"
height="20"
viewBox="0 0 21 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.25 13.701C0.532561 14.1152 0.286748 15.0326 0.700962 15.75C1.11518 16.4674 2.03256 16.7133 2.75 16.299L1.25 13.701ZM20.7694 5.38823C20.9838 4.58803 20.5089 3.76552 19.7087 3.55111L6.66874 0.0570541C5.86854 -0.157359 5.04603 0.317515 4.83162 1.11771C4.61721 1.91791 5.09208 2.74042 5.89228 2.95483L17.4834 6.06066L14.3776 17.6518C14.1631 18.452 14.638 19.2745 15.4382 19.4889C16.2384 19.7033 17.0609 19.2284 17.2753 18.4282L20.7694 5.38823ZM2.75 16.299L20.0705 6.29904L18.5705 3.70096L1.25 13.701L2.75 16.299Z"
fill="#B9FF66"
/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</section>
<section class="section container">
<header class="section__header">
<h2 class="section__title puddle-bg">Our Working Process</h2>
<div class="section__description">
<p>
Step-by-Step Guide to Achieving <br />
Your Business Goals
</p>
</div>
</header>
<div class="section__body">
<div class="process">
<ol class="process__list">
<li class="process__item">
<details class="process__accordion" open>
<summary class="process__accordion-header">
<h3 class="process__accordion-title">Consultation</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
During the initial consultation, we will discuss your
business goals and objectives, target audience, and
current marketing efforts. This will allow us to
understand your needs and tailor our services to best fit
your requirements.
</p>
</div>
</details>
</li>
<li class="process__item">
<details class="process__accordion">
<summary class="process__accordion-header">
<h3 class="process__accordion-title">
Research and Strategy Development
</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Sapiente, perferendis.
</p>
</div>
</details>
</li>
<li class="process__item">
<details class="process__accordion">
<summary class="process__accordion-header">
<h3 class="process__accordion-title">Implementation</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Dolore quidem qui deserunt corporis voluptatem iure
adipisci molestiae delectus, fuga magnam nemo, officia
nostrum praesentium quia? Tempora, maiores! Quo, tempora
error.
</p>
</div>
</details>
</li>
<li class="process__item">
<details class="process__accordion">
<summary class="process__accordion-header">
<h3 class="process__accordion-title">
Monitoring and Optimization
</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Sit, adipisci! Cum laboriosam et, temporibus unde
asperiores quibusdam suscipit pariatur neque. Blanditiis
officiis optio iure labore.
</p>
</div>
</details>
</li>
<li class="process__item">
<details class="process__accordion">
<summary class="process__accordion-header">
<h3 class="process__accordion-title">
Reporting and Communication
</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Nostrum voluptas dolore autem fugiat aut ratione?
</p>
</div>
</details>
</li>
<li class="process__item">
<details class="process__accordion">
<summary class="process__accordion-header">
<h3 class="process__accordion-title">
Continual Improvement
</h3>
<span class="process__accordion-indicator"></span>
</summary>
<div class="process__accordion-body">
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Fuga, vitae voluptas? Similique nihil at maiores eveniet
numquam facere ex minima?
</p>
</div>
</details>
</li>
</ol>
</div>
</div>
</section>
<section class="section container">
<header class="section__header">
<h2 class="section__title puddle-bg">Team</h2>
<div class="section__description">
<p>
Meet the skilled and experienced team behind our successful
digital marketing strategies
</p>
</div>
</header>
<div class="section__body">
<div class="team">
<ul class="team__list grid grid--3">
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/1.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">John Smith</h3>
<p class="team-card__post">CEO and Founder</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
10+ years of experience in digital marketing. Expertise in
SEO, PPC, and content strategy
</p>
</div>
</article>
</li>
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/1.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">Jane Doe</h3>
<p class="team-card__post">Director of Operations</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
7+ years of experience in project management and team
leadership. Strong organizational and communication skills
</p>
</div>
</article>
</li>
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/3.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">Michael Brown</h3>
<p class="team-card__post">Senior SEO Specialist</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
5+ years of experience in SEO and content creation.
Proficient in keyword research and on-page optimization
</p>
</div>
</article>
</li>
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/4.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">Emily Johnson</h3>
<p class="team-card__post">PPC Manager</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
3+ years of experience in paid search advertising. Skilled
in campaign management and performance analysis
</p>
</div>
</article>
</li>
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/5.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">Brian Williams</h3>
<p class="team-card__post">Social Media Specialist</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
4+ years of experience in social media marketing.
Proficient in creating and scheduling content, analyzing
metrics, and building engagement
</p>
</div>
</article>
</li>
<li class="team__item">
<article class="team-card">
<header class="team-card__header">
<img
src="./images/team/6.svg"
alt=""
class="team-card__image"
width="100"
height="100"
/>
<div class="team-card__info">
<h3 class="team-card__name h4">Sarah Kim</h3>
<p class="team-card__post">Content Creator</p>
</div>
<a href="" class="team-card__link" target="_blank">
<span class="visually-hidden">LinkedIn</span>
<svg
width="17"
height="17"
viewBox="0 0 17 17"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.317757 17H3.81308V5.68438H0.317757V17Z"
fill="#B9FF66"
/>
<path
d="M0 2.07188C0 3.1875 0.900311 4.09062 2.06542 4.09062C3.17757 4.09062 4.07788 3.1875 4.07788 2.07188C4.07788 0.95625 3.17757 0 2.06542 0C0.900311 0 0 0.95625 0 2.07188Z"
fill="#B9FF66"
/>
<path
d="M13.4517 17H17V10.7844C17 7.75625 16.3115 5.36562 12.7632 5.36562C11.0685 5.36562 9.90343 6.32188 9.42679 7.225H9.37383V5.68438H6.03738V17H9.53271V11.4219C9.53271 9.93437 9.79751 8.5 11.6511 8.5C13.4517 8.5 13.4517 10.2 13.4517 11.475V17Z"
fill="#B9FF66"
/>
</svg>
</a>
</header>
<div class="team-card__body">
<p>
2+ years of experience in writing and editing Skilled in
creating compelling, SEO-optimized content for various
industries
</p>
</div>
</article>
</li>
</ul>
<button class="team__button button" type="button">
See all team
</button>
</div>
</div>
</section>
<section class="section container">
<header class="section__header">
<h2 class="section__title puddle-bg">Testimonials</h2>
<div class="section__description">
<p>
Hear from Our Satisfied Clients: Read Our Testimonials to Learn
More about Our Digital Marketing Services
</p>
</div>
</header>
<div class="section__body">
<div class="reviews">
<div class="reviews__slider">
<ul class="reviews__slider-list">
<li class="reviews__slider-item">
<blockquote class="review-card">
<div class="review-card__body">
<p>
"We have been working with Positivus for the past year
and have seen a significant increase in website traffic
and leads as a result of their efforts. The team is
professional, responsive, and truly cares about the
success of our business. We highly recommend Positivus
to any company looking to grow their online presence."
</p>
</div>
<footer class="review-card__footer">
<cite class="review-card__name">John Smith </cite>
<cite class="review-card__company"
>Marketing Director at XYZ Corp</cite
>
</footer>
</blockquote>
</li>
<li class="reviews__slider-item">
<blockquote class="review-card">
<div class="review-card__body">
<p>
"We have been working with Positivus for the past year
and have seen a significant increase in website traffic
and leads as a result of their efforts. The team is
professional, responsive, and truly cares about the
success of our business. We highly recommend Positivus
to any company looking to grow their online presence."
</p>
</div>
<footer class="review-card__footer">
<cite class="review-card__name">John Smith </cite>
<cite class="review-card__company"
>Marketing Director at XYZ Corp</cite
>
</footer>
</blockquote>
</li>
<li class="reviews__slider-item">
<blockquote class="review-card">
<div class="review-card__body">
<p>
"We have been working with Positivus for the past year
and have seen a significant increase in website traffic
and leads as a result of their efforts. The team is
professional, responsive, and truly cares about the
success of our business. We highly recommend Positivus
to any company looking to grow their online presence."
</p>
</div>
<footer class="review-card__footer">
<cite class="review-card__name">John Smith </cite>
<cite class="review-card__company"
>Marketing Director at XYZ Corp</cite
>
</footer>
</blockquote>
</li>
<li class="reviews__slider-item">
<blockquote class="review-card">
<div class="review-card__body">
<p>
"We have been working with Positivus for the past year
and have seen a significant increase in website traffic
and leads as a result of their efforts. The team is
professional, responsive, and truly cares about the
success of our business. We highly recommend Positivus