-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3582 lines (3257 loc) · 190 KB
/
index.html
File metadata and controls
3582 lines (3257 loc) · 190 KB
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"
class=" csspositionsticky supports backgroundblendmode objectfit object-fit backgroundcliptext cssfilters cssmask backdropfilter">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Thrust Brand: Give your brand the thrust it needs!</title>
<meta name="title" content="Get featured on FOX, USA Today, Benzinga, MarketWatch and 200 premium brands">
<meta name="description"
content="Drive traffic to your website and boost your search position with exposure on over 200 major news websites with a potential reach of 100 million readers">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.thrustbrand.com">
<meta property="og:title" content="Get featured on FOX, USA Today, Benzinga, MarketWatch and 200 premium brands">
<meta property="og:description"
content="Drive traffic to your website and boost your search position with exposure on over 200 major news websites with a potential reach of 100 million readers">
<meta property="og:image:alt"
content="Get featured on FOX, USA Today, Benzinga, MarketWatch and 400 premium brands with ThrustBrand.com">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="ThrustBrand.com">
<meta property="twitter:player:width" content="560">
<meta property="twitter:player:height" content="315">
<link rel="canonical" href="https://thrustbrand.com/">
<meta name="original-source" content="https://thrustbrand.com">
<link rel="stylesheet" as="style" onload="this.rel = 'stylesheet'"
href="./Thrust_Brand_Files/css">
<noscript>
<link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'>
</noscript>
<link rel="stylesheet"
href="./Thrust_Brand_Files/vendors_theme_mobile.css">
<link rel="stylesheet"
href="./Thrust_Brand_Files/home2.css">
<link rel="stylesheet" as="style" onload="this.rel = 'stylesheet'"
href="./Thrust_Brand_Files/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous">
<noscript>
<link rel="stylesheet" href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css'
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous">
</noscript>
<script type="text/javascript" async=""
src="./Thrust_Brand_Files/vy8qcb9z"></script>
<script async=""
src="./Thrust_Brand_Files/gtm.js"></script>
<script async=""
src="./Thrust_Brand_Files/modernizr.min.js"></script>
<script async=""
src="./Thrust_Brand_Files/ThrustBrand-cookies.js"></script>
<script async=""
src="./Thrust_Brand_Files/instant-page-5-1-0.min.js"
type="module"></script>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-P46CGK5');
</script>
<link rel="prefetch" href="https://thrustbrand.com/">
</head>
<body data-mobile-nav-trigger-alignment="right" data-mobile-nav-align="left" data-mobile-nav-style="minimal"
data-mobile-nav-shceme="gray" data-mobile-header-scheme="gray" data-mobile-nav-breakpoint="1199">
<div id="wrap">
<header class="main-header main-header-overlay">
<div class="mainbar-wrap">
<div class="megamenu-hover-bg"></div>
<div class="container mainbar-container pl-0 pr-0 ">
<div class="mainbar">
<div class="row mainbar-row align-items-lg-stretch px-4">
<div class="col pl-0">
<div class="navbar-header">
<a class="navbar-brand" href="https://thrustbrand.com/" rel="home">
<span class="navbar-brand-inner">
<img class="logo-dark"
src="./Thrust_Brand_Files/ThrustBrand-Logo-Dark-340x54-2.svg"
alt="Thrust Brand - Press Release Distribution" width="250px" height="39px">
<img class="logo-sticky"
src="./Thrust_Brand_Files/ThrustBrand-Logo-340x54-2.svg"
alt="Thrust Brand - Get published on major premium brands" width="250px" height="39px">
<img class="mobile-logo-default"
src="./Thrust_Brand_Files/ThrustBrand-Logo-340x54-2.svg"
alt="Thrust Brand - Publish a press release" width="250px" height="39px">
<img class="logo-default"
src="./Thrust_Brand_Files/ThrustBrand-Logo-340x54-2.svg"
alt="Thrust Brand - Get featured on major premium brands" width="250px" height="39px">
</span>
</a>
<button type="button" class="navbar-toggle collapsed nav-trigger style-mobile" data-toggle="collapse"
data-target="#main-header-collapse" aria-expanded="false"
data-changeclassnames="{ "html": "mobile-nav-activated overflow-hidden" }">
<span class="sr-only">Toggle navigation</span>
<span class="bars">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</span>
</button>
</div>
</div>
<div class="col text-right">
<div class="collapse navbar-collapse" id="main-header-collapse" aria-expanded="false" role="tablist">
<ul class="main-nav main-nav-hover-underline-1 nav align-items-lg-stretch justify-content-lg-end">
<li>
<a href="https://thrustbrand.com/#benefits" data-localscroll="true">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt font-size-15">What You Get</span>
</span>
</a>
</li>
<li>
<a href="https://thrustbrand.com/#news_sites" data-localscroll="true">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt font-size-15">Brands</span>
</span>
</a>
</li>
<li>
<a href="mailto:info@thrustbrand.com" class="intercom-button">
<span class="link-icon"></span>
<span class="link-txt">
<span class="link-ext"></span>
<span class="txt font-size-15">Get In Touch</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main id="content" class="content" style="background-image: none !important;">
<section id="hero-section" class=" vc_row overflow-hidden d-flex flex-wrap align-items-center pt-130 pb-90 ">
<div class="container ">
<div class="row d-flex flex-wrap align-items-center">
<div class="lqd-column col-lg-7 col-md-7 col-sm-12 mb-5 mb-md-0 pt-md-3">
<div class="liquid-img-group-single" data-shadow-style="4" data-roundness="8">
<div class="liquid-img-group-img-container visible-xs">
<div class="liquid-img-group-content content-floated-mid">
</a>
</div>
<div class="liquid-img-container-inner mb-5">
<figure>
<picture class="iconbox-round">
<img
src="./Thrust_Brand_Files/ThrustBrand-Review-Homepage-Thumbnail-Header.jpg"
loading="lazy" alt="ThrustBrand.co can write and publish a press release for your brand">
</picture>
</figure>
</div>
</div>
</div>
<h4 class="prepend font-weight-bold ">Feature your content on</h4>
<h1 class="main font-weight-bold mb-2 pb-1">Forbes, NY Times</h1>
<h2 class="append font-weight-bold mt-0">and 400 other premium brands.</h2>
<p class=" lead pr-md-6 mb-50">
Get your articles published on our network of 400+ Tier-1 news websites that have a monthly readership
of more than 200 million to give your brand a massive surge in search rankings and exposure.
<br>
</p>
<div class="row mt-5">
<div class="lqd-column col-xs-12 mb-3 mb-md-0">
<div class="btn-group" role="group">
<a href="https://thrustbrand.com/#benefits" data-localscroll="true"
class="btn-mobile-block btn btn-solid text-uppercase btn-md circle btn-bordered border-thin btn-gradient font-weight-bold px-2">
</a>
<p class="mt-5 font-size-18">
<a data-localscroll="true">
<img
src="./Thrust_Brand_Files/trophy2.png"
width="25px" height="30px" class="mr-2" alt="thrustbrand Reviews">
Number One <span>Press </span>Releasing Consultancy <span>in </span>Spain
</a>
</p>
</div>
<div class="row d-flex flex-wrap align-items-center mt-5 ca-initvalues-applied lqd-animations-done"
data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview","animationTarget":".lqd-column","duration":"1800","startDelay":"500","delay":"180","easing":"easeOutQuint","initValues":{"translateX":-45,"rotateZ":1,"opacity":0},"animations":{"translateX":0,"rotateZ":0,"opacity":1}}">
</div>
</div>
</div>
</div>
<div class="lqd-column col-lg-5 col-md-5 pt-md-0 hidden-sm hidden-xs">
<div class="liquid-img-container-inner ">
<div class="hero-video-container">
<video class="hero-video is-in-view" data-shadow-style="4" data-inview="true"
data-animate-shadow="true" width="424" height="524" autoplay="" muted="" loop="" playsinline=""
preload="auto" poster="/assets/ThrustBrand-News-Card-Publishing-Video2-compressed.mp4">
<source src="assets/ThrustBrand-News-Card-Publishing-Video2-compressed.mp4"
type="video/mp4">
<source src="/assets/ThrustBrand-News-Card-Publishing-Video2-compressed.webm"
type="video/webm">
<img
src="./Thrust_Brand_Files/News-Card-Placeholder3.jpg"
alt="Publish on premium brands including Fox News and USA Today">
</video>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="news-carousel" class="vc_row d-flex hide-on-mobile mb-60 ">
<div class=" col-xs-12 px-0 py-md-4">
<div class="container pt-10">
<div class="row">
<div class="lqd-column col-md-12">
<div class="carousel-container">
<div class="carousel-items row carousel-logos flickity-enabled is-draggable"
data-lqd-flickity="{"cellAlign":"left","prevNextButtons":false,"buttonsAppendTo":"self","pageDots":false,"groupCells":false,"wrapAround":true,"autoPlay":false,"pauseAutoPlayOnHover":false}"
tabindex="0">
<div class="flickity-viewport is-moving" style="height: 63.4062px; touch-action: pan-y;">
<div class="flickity-slider" style="left: 0px; transform: translateX(-133.33%);">
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4 is-selected is-selected-i-1"
style="position: absolute; left: 133.33%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/FOX-Publish-Press-Release-ThrustBrand-4.svg"
class="mt-10 w-60" alt="Publish a press release on Fox News">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 150%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/USA-Today-Publish-Press-Release-ThrustBrand.svg"
class="w-60" alt="Publish a press release on USA Today">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 166.67%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/Google-News-Publish-Press-Release-ThrustBrand2.svg"
class="w-60" alt="How to publish on Google News">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 183.33%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/Digital-Journal-Press-Release-ThrustBrand.svg"
class="mt-10 w-50" alt="Publish a press release on Digital Journal">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 200%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/Publish-On-Market-Watch-ThrustBrand.svg"
class="mt-10 w-50" alt="Publish a press release on Market Watch">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 216.67%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/Publish-On-Benzinga-With-ThrustBrand.svg"
class="mt-10 w-50" alt="Publish a press release on Benzinga">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 100%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/NCN-Publish-Press-Release-ThrustBrand2.svg"
class="w-50" alt="Publish a press release on NCN - News Channel Nebraska">
</figure>
</div>
</div>
<div class="lqd-column carousel-item col-md-2 col-sm-3 col-xs-4" aria-hidden="true"
style="position: absolute; left: 116.67%;">
<div class="carousel-item-inner">
<figure class="text-center opacity-04 reset-opacity-onhover">
<img
src="./Thrust_Brand_Files/SNN-Publish-Press-Release-ThrustBrand2.svg"
class="mt-10 w-50" alt="Publish a press release on SNN - Suncoast News Network">
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="benefits" class="vc_row pt-90 pb-6 bg-no-repeat" style="">
<div class="container">
<div class="row d-flex flex-wrap align-items-center mb-9 pb-md-6">
<div class="lqd-column col-md-10 col-md-offset-1 pb-4" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<header class="fancy-title pr-md-4">
<h2 class="text-lh-xxs text-center mb-4">Marketing That Guarantees Results!</h2>
<p class="lead mb-55 text-center">
Enhance your presence online with higher rankings in SERP and get more leads to your website!
</p>
</header>
</div>
<div class="lqd-column col-md-6 mb-30 hidden-xs" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":0, "opacity":0}, "animations":{"translateY":30, "opacity":1}}">
<div class="liquid-img-group-single" data-shadow-style="4" data-roundness="8">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner mb-5">
<figure>
<picture class="iconbox-round">
<source srcset="/assets/img/ThrustBrand-Review-Homepage-Thumbnail-555x399-compressed.jpg"
media="(min-width: 1200px)">
<source srcset="/assets/img/ThrustBrand-Review-Homepage-Thumbnail-455x635-2-compressed.jpg"
media="(min-width: 992px)">
<source srcset="/assets/img/ThrustBrand-Review-Homepage-Thumbnail-555x399-compressed.jpg"
media="(max-width: 585px)">
<source srcset="/assets/img/ThrustBrand-Review-Homepage-Thumbnail-720x517-compressed.jpg"
media="(max-width: 991px)">
<img srcset="/assets/img/ThrustBrand-Review-Homepage-Thumbnail-720x517-compressed.jpg"
loading="lazy" alt="ThrustBrand.com can write and publish a press release for your brand">
</picture>
</figure>
</div>
</div>
</div>
</div>
<div class="lqd-column col-sm-12 col-md-5 col-md-offset-1" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<header class="fancy-title pr-md-4">
<h3 class="text-lh-xxs">Get featured on premium brands in just 3 days!</h3>
</header>
<p class=" mb-40">
Looking for better exposure? Leave it to us! Our expert team of content creators will craft the perfect
story to ensure enhanced interest in your brand. Next we publish the story on a specially curated list
from our network of over 400 news websites to give your brand the massive exposure it deserves!
</p>
<div class="d-block w-100 visible-xs pb-0"></div>
</div>
<div id="website-traffic" class="row d-flex flex-wrap align-items-center mb-4 mb-md-8">
<div class="lqd-column col-md-6 mb-30 order-md-2 col-md-push-6 text-right hidden-xs hidden-sm"
data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="liquid-img-group-single w-75" data-shadow-style="3" data-roundness="8"
style="transform: rotate(356deg);">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{ "translateY": 0,"translateX": 200, "scaleX":0.75, "scaleY":0.75 }"
data-parallax-to="{ "translateY": -90, "translateX": 20, "scaleX":0.9, "scaleY":0.9 }">
<figure>
<img
src="./Thrust_Brand_Files/Thrust-Brand-Publish-On-MarketWatch.jpg"
loading="lazy" width="425" height="525"
alt="Publish a press release on NBC with thrustbrand.co ">
</figure>
</div>
</div>
</div>
</div>
<div class="lqd-column col-sm-12 col-md-5 col-md-offset-1 col-md-pull-6" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="visible-xs text-center mb-5">
<img
src="./Thrust_Brand_Files/ThrustBrand-Get-Qualified-Buyers1.png"
class="visible-xs" loading="lazy" width="450" height="385"
alt="Get more website sales with thrustbrand.co ">
</div>
<header class="fancy-title pr-md-4">
<div class="icon-circle icon-red">
<i class="fas fa-heart"></i>
</div>
<h2 class="heading-with-icon text-lh-xxs mb-5 pl-5 ml-3">Get Qualified Buyers</h2>
</header>
<p class=" mb-55">
Drive qualified buyers to your website by publishing on high-traffic premium brands. Each publication acts
as a landing page to warm up buyers to your brand and offer before clicking through to your site.
</p>
</div>
<div class="d-block w-100 visible-xs pb-0"></div>
</div>
<div id="SEO" class="row d-flex flex-wrap align-items-center mb-4 mb-md-8">
<div class="lqd-column col-md-6 mb-30 order-md-2 hidden-xs hidden-sm" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="liquid-img-group-single w-75" data-shadow-style="3" data-roundness="8"
style="transform: rotate(4deg);">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{ "translateY": 0,"translateX": 0, "scaleX":0.75, "scaleY":0.75 }"
data-parallax-to="{ "translateY": -90, "translateX": 220, "scaleX":0.9, "scaleY":0.9 }">
<figure>
<img
src="./Thrust_Brand_Files/Thrust-Brand-News-Card-10.jpg"
loading="lazy" width="425" height="525"
alt="Publish a press release on Fox News with thrustbrand.co ">
</figure>
</div>
</div>
</div>
</div>
<div class="lqd-column col-sm-12 col-md-5 col-md-offset-1 " data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="visible-xs text-center mb-5">
<img
src="./Thrust_Brand_Files/ThrustBrand-Rank-Higher-On-Google-SEO1.png"
class="visible-xs" loading="lazy" width="450" height="385"
alt="Rank Higher on Google SEO ThrustBrand.co ">
</div>
<header class="fancy-title pr-md-4">
<div class="icon-circle icon-pink">
<i class="fas fa-angle-double-up"></i>
</div>
<h2 class="heading-with-icon text-lh-xxs mb-5 pl-5 ml-3">Higher Rankings on Google</h2>
</header>
<p class=" mb-55">
Our news articles consistently rank higher in Google SERP for target keywords, driving maximum leads
to your brand. Links from these influential premium brands are considered to be of high authority by
search engines ensuring that your websites always get a higher search position.
</p>
</div>
<div class="d-block w-100 visible-xs pb-0"></div>
</div>
<div id="trust-badge" class="row d-flex flex-wrap align-items-center mb-0">
<div class="lqd-column col-sm-12 col-md-5 col-md-offset-1 " data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="visible-xs text-center mb-5">
<img
src="./Thrust_Brand_Files/ThrustBrand-Increase-Conversion-Rate1.png"
class="visible-xs" alt="Improve website conversion rate" loading="lazy" width="450" height="385">
</div>
<header class="fancy-title pr-md-4">
<div class="icon-circle icon-green">
<i class="fas fa-comment-dollar"></i>
</div>
<h2 class="heading-with-icon text-lh-xxs mb-5 pl-5 ml-3">Boost Your Sales</h2>
</header>
<p class=" mb-55">
Boost your sales and enhance conversion rate by up to 50% by installing our “As Seen On” badge. This
customizable trust badge helps in ensuring legitimacy and building trust in your brand with your
visitors.
</p>
</div>
<div class="lqd-column col-md-6 mb-30 order-md-2 hidden-xs hidden-sm" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<div class="liquid-img-group-container">
<div class="liquid-img-group-inner">
<div class="liquid-img-group-single" data-shadow-style="1" data-roundness="8">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{"translateX":100, "translateY":100, "scaleX":0.9, "scaleY":0.9}"
data-parallax-to="{"translateX":80, "translateY":50, "scaleX":0.65, "scaleY":0.65}">
<figure>
<img
src="./Thrust_Brand_Files/Thrust-Brand-Promote-Website-With-Press-Release.jpeg"
alt="How to publish a press release" loading="lazy" width="425" height="525">
</figure>
</div>
</div>
</div>
<div class="liquid-img-group-single w-75" data-shadow-style="3" data-roundness="8">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{ "translateY": -240,"translateX": 80, "scaleX":0.85, "scaleY":0.85 }"
data-parallax-to="{ "translateY": -280, "translateX": 125, "scaleX":1.5, "scaleY":1.5 }">
<figure>
<img
src="./Thrust_Brand_Files/ThrustBrand-As-seen-on-TrustBadge-.png"
loading="lazy" alt="As seen on - How to improve my conversion rate" width="425"
height="525">
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="how-it-works" class="pb-170 ">
<div class="container ">
<div class="row d-flex flex-wrap align-items-center mb-0">
<div class="lqd-column col-md-10 col-md-offset-1" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"1000", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<header class="fancy-title mb-4 mb-md-4 text-center pb-6 pr-md-5 pl-md-5">
<h2 class="mt-1"><span class="hidden-xs">Here's </span>How It Works</h2>
<p class="lead aos-init aos-animate pr-md-5 pl-md-5" data-aos="fade-up">We help enhance your brand’s
exposure by choosing the perfect premium brands to write and publish your news story on from a list of
over 400 influential new sites. Our team can publish content on any topic to help deliver real
results!</p>
</header>
<div class="how-it-works row mb-2">
<div class="how-it-works-item col-md-4 mb-5 aos-init aos-animate" data-aos="fade-up">
<div class="how-it-works-heading row">
<div class="col-xl-auto mb-2 mb-xl-0">
<div class="how-it-works-heading-num ml-3">1</div>
</div>
<strong class="col-xl-auto pl-xl-0 text-dark pl-3 pr-3">Consulting</strong>
<div class="col-xl pl-0 how-it-works-heading-dots d-none d-xl-block hidden-xs hidden-sm hidden-md">.
. . . . . . . . . . . . . . . . . . .</div>
</div>
<div class="how-it-works-content">
<div class="liquid-img-group-single" data-roundness="8">
<figure>
<picture class="iconbox-round">
<source srcset="/assets/img/ThrustBrand-Write-A-Press-Release-295.jpg"
media="(min-width: 1200px)">
<source srcset="/assets/img/ThrustBrand-Write-A-Press-Release-295.jpg"
media="(max-width: 325px)">
<source srcset="/assets/img/ThrustBrand-Write-A-Press-Release-646.jpg"
media="(max-width: 676px)">
<source srcset="/assets/img/ThrustBrand-Write-A-Press-Release-779.jpg"
media="(max-width: 1199px)">
<img src="https://thrustbrand.com/assets/img/ThrustBrand-Write-A-Press-Release-779.jpg"
class="img-fluid w-100 rounded how-it-works-image">
</picture>
</figure>
</div>
<p class="text-center mx-lg-3 mb-0 mt-md-0 mt-3">
Our experienced team of writers craft the perfect news story to promote your brand.
</p>
</div>
</div>
<div class="how-it-works-item col-md-4 mb-5 aos-init aos-animate" data-aos="fade-up"
data-aos-delay="150">
<div class="how-it-works-heading row">
<div class="col-xl-auto mb-2 mb-xl-0">
<div class="how-it-works-heading-num ml-3">2</div>
</div>
<strong class="col-xl-auto pl-xl-0 text-dark pl-3 pr-3">Publishing</strong>
<div class="col-xl pl-0 how-it-works-heading-dots d-none d-xl-block hidden-xs hidden-sm hidden-md">.
. . . . . . . . . . . . . . . . . . .</div>
</div>
<div class="how-it-works-content">
<div class="liquid-img-group-single" data-roundness="8">
<figure>
<picture class="iconbox-round">
<source srcset="/assets/img/ThrustBrand-Press-Release-Publishing-295.jpg"
media="(min-width: 1200px)">
<source srcset="/assets/img/ThrustBrand-Press-Release-Publishing-295.jpg"
media="(max-width: 325px)">
<source srcset="/assets/img/ThrustBrand-Press-Release-Publishing-646.jpg"
media="(max-width: 676px)">
<source srcset="/assets/img/ThrustBrand-Press-Release-Publishing-779.jpg"
media="(max-width: 1199px)">
<img srcset="/assets/img/ThrustBrand-Press-Release-Publishing-779.jpg" loading="lazy"
class="img-fluid w-100 rounded how-it-works-image">
</picture>
</figure>
</div>
<p class="text-center mx-lg-3 mb-0 mt-md-0 mt-3">
Our team then publish your article on our network of over 400 premium brands.
</p>
</div>
</div>
<div class="how-it-works-item col-md-4 mb-5 aos-init aos-animate" data-aos="fade-up"
data-aos-delay="200">
<div class="how-it-works-heading row">
<div class="col-xl-auto mb-2 mb-xl-0">
<div class="how-it-works-heading-num ml-3">3</div>
</div>
<strong class="col-xl-auto pl-xl-0 text-dark pl-3 pr-3">Get Results</strong>
</div>
<div class="how-it-works-content">
<div class="liquid-img-group-single" data-roundness="8">
<figure>
<picture class="iconbox-round">
<source srcset="/assets/img/ThrustBrand-Rank-Higher-On-Google-295.jpg"
media="(min-width: 1200px)">
<source srcset="/assets/img/ThrustBrand-Rank-Higher-On-Google-295.jpg"
media="(max-width: 325px)">
<source srcset="/assets/img/ThrustBrand-Rank-Higher-On-Google-646.jpg"
media="(max-width: 676px)">
<source srcset="/assets/img/ThrustBrand-Rank-Higher-On-Google-779.jpg"
media="(max-width: 1199px)">
<img srcset="/assets/img/ThrustBrand-Rank-Higher-On-Google-779.jpg" loading="lazy"
class="img-fluid w-100 rounded how-it-works-image">
</picture>
</figure>
</div>
<p class="text-center mx-lg-3 mb-0 mt-3">
We send you a full report with live links, and you enjoy the boost in exposure and sales.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="custom-shape-divider-bottom-1621016099">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path
d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z"
class="shape-fill"></path>
</svg>
</div>
</section>
<section id="news_sites" class="mt-4 mt-lg-9 pt-lg-9 pb-160">
<div class="container">
<div class="lqd-parallax-images-3 hidden-sm hidden-xs hidden-md unselectable" style="margin-bottom:-526px">
<div class="liquid-img-group-container" style="left: -88px;margin-bottom: -70px;">
<div class="liquid-img-group-inner">
<div class="liquid-img-group-single" data-shadow-style="3" data-roundness="8"
style="transform: rotate(15deg);">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner unselectable" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{ "translateY": 0,"translateX": -70, "scaleX":0.8, "scaleY":0.8 }"
data-parallax-to="{ "translateY": 0, "translateX": 30, "scaleX":1.2, "scaleY":1.2 }">
<figure>
<img
src="./Thrust_Brand_Files/ThrustBrand-Sample-Report2.jpeg"
loading="lazy" alt="ThrustBrand Sample Report Screenshot" width="425" height="525">
</figure>
</div>
<!-- /.liquid-img-group-inner -->
</div>
<!-- /.liquid-img-group-content -->
</div>
<!-- /.liquid-img-group-single -->
<div class="liquid-img-group-single text-right" data-shadow-style="3" data-roundness="8"
style="transform: rotate(345deg);">
<div class="liquid-img-group-img-container">
<div class="liquid-img-container-inner unselectable" data-parallax="true"
data-parallax-options="{ "overflowHidden": false, "easing": "linear" }"
data-parallax-from="{ "translateY": 25,"translateX": 470, "scaleX":0.8, "scaleY":0.8 }"
data-parallax-to="{ "translateY": 25, "translateX": 370, "scaleX":1.2, "scaleY":1.2 }">
<figure>
<img
src="./Thrust_Brand_Files/ThrustBrand-Publish-On-Fox-News.jpeg"
loading="lazy" alt="Publish a news article on Fox News" width="425" height="525">
</figure>
</div>
<!-- /.liquid-img-group-inner -->
</div>
<!-- /.liquid-img-group-content -->
</div>
<!-- /.liquid-img-group-single -->
</div>
<!-- /.liquid-img-group-inner -->
</div>
<!-- /.liquid-img-group-container -->
</div>
<div class="row">
<div class="lqd-column col-md-8 col-md-offset-2 mb-md-5 text-center" data-custom-animations="true"
data-ca-options="{"triggerHandler":"inview", "animationTarget":"all-childs", "duration":"800", "delay":"75", "easing":"easeOutQuint", "direction":"forward", "initValues":{"translateY":30, "opacity":0}, "animations":{"translateY":0, "opacity":1}}">
<header class="fancy-title">
<h2 class="mt-1 mb-4 text-lh-xxs">Millions Of Readers</h2>
<p class="mb-3 lead">
Profit from the readership and authority our partnered premium brands have built over many years. Our
growing network of premium brands rank high on Google delivering you quality readers.
</p>
</header>
<!-- /.fancy-title -->
<div class="tabs-content">
<div id="ld-tab-pane-stats-pnn" role="tabpanel" class="tabs-pane fade active in">
<div class="row pt-5">
<div class="col-xs-12 visible-xs ">
<div class="liquid-counter liquid-counter-default text-center text-dark">
<div class="liquid-counter-element mb-2" data-fittext="true"
data-fittext-options="{ "compressor": 0.5, "minFontSize": 40, "maxFontSize": 40 }"
data-enable-counter="true"
data-counter-options="{"targetNumber":"140,712,900","blurEffect":true}"
style="font-size: 40px;">
<span><span class="liquid-counter-animator"><span class="liquid-animator-value">1</span>
<div class="liquid-animator-numbers" data-value="1">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">4</span>
<div class="liquid-animator-numbers" data-value="4">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">0</span>
<div class="liquid-animator-numbers" data-value="0">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span>,<span class="liquid-counter-animator"><span class="liquid-animator-value">7</span>
<div class="liquid-animator-numbers" data-value="7">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">1</span>
<div class="liquid-animator-numbers" data-value="1">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">2</span>
<div class="liquid-animator-numbers" data-value="2">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span>,<span class="liquid-counter-animator"><span class="liquid-animator-value">9</span>
<div class="liquid-animator-numbers" data-value="9">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">0</span>
<div class="liquid-animator-numbers" data-value="0">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">0</span>
<div class="liquid-animator-numbers" data-value="0">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span></span>
</div>
<!-- /.liquid-counter-element -->
<span class="liquid-counter-text liquid-text-bottom opacity-06">MONTHLY READERS</span>
</div>
</div>
<div class="col-xs-6 col-xs-push col-sm-4">
<div class="liquid-counter liquid-counter-default text-center text-dark">
<div class="liquid-counter-element mb-2" data-fittext="true"
data-fittext-options="{ "compressor": 0.5, "minFontSize": 40, "maxFontSize": 40 }"
data-enable-counter="true"
data-counter-options="{"targetNumber":"400","blurEffect":true}"
style="font-size: 40px;">
<span><span class="liquid-counter-animator"><span class="liquid-animator-value">2</span>
<div class="liquid-animator-numbers" data-value="2">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</span><span class="liquid-counter-animator"><span class="liquid-animator-value">7</span>
<div class="liquid-animator-numbers" data-value="7">
<ul>
<li>0</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>