-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathship-business.html
1094 lines (853 loc) · 67.2 KB
/
ship-business.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">
<title>Ship Thrifty For Your Business</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Google Tag Manager -->
<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-T6CL48V');</script>
<!-- End Google Tag Manager -->
<script src="https://www.googleoptimize.com/optimize.js?id=OPT-N8LN3TH"></script>
<link rel="stylesheet" href="css/dc-custom.css">
<link rel="stylesheet" href="css/shipthrifty-landing.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/75f220108c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.css">
</head>
<style>
.hero-content-container{}
.list-st li{list-style:disc;text-transform: capitalize;}
.step-icon{padding-top:20px}
.hub-cat{height:200px;font-size:12px!important;}
.copy .hub-cat{color:darkblue}
.desc-copy{color:#777;font-size:12px;font-weight:300;}
.test-image-box{width:50px;height:50px;border-radius:90px}
</style>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T6CL48V"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container-fluid">
<header>
<nav>
<div id ="desktop-nav">
<div class ="d-flex d-flex-rows flex-wrap">
<div class ="logo-box-st md-overall-padding flex-grow-1">
<img src="images/logo-nav%20(1).png" alt="ship thrifty logo" height="65" width="259"/>
</div>
<div class ="call-us bold uppercase lg-overall-padding" style="padding-top:50px;"> <a style="color:black;" class="uppercase " href="https://www.shipthrifty.com/register">SIGNUP</a></div>
<div class ="call-us bold uppercase lg-overall-padding" style="padding-top:50px"> Speak to Sales 800 544 4992</div>
</div> <!-- Flex rows close tag -->
<hr>
</div> <!-- Desktop NAV ID CLOSE TAG -->
</nav>
</header>
<!--Hero -->
<section>
<div id="hero-section-desktop" style="background-color:#000;color:#fff" >
<div class ="row">
<div class ="col-md-4 col-sm-12">
<div class ="hero-content-container lg-overall-padding">
<div class ="xxl-spacer"></div>
<div class ="special">BUSINESS SHIPPING SIMPLIFIED</div>
<div class ="subheadline">Save Money & Ship With Confidence</div>
<div class ="md-spacer"></div>
<a href="https://www.shipthrifty.com" class="copy bold" style="color:#ffffff;">Check Our Rates ></a>
</div> <!-- Hero Content Container -->
</div> <!-- Content Section -->
<div class ="col-md-4 col-sm-12">
<p style="text-align:center">
<img src="images/businessguy.png" alt="business man with package" height="600"/> <!-- Image Section -->
</p></div>
<!-- close hero row -->
<div class ="col-md-4 col-sm-12">
<div class ="xxl-spacer"></div>
<ul class="list-st">
<li>No Monthly Services Fees</li>
<li>No Pre-Funding Required</li>
<li>Enjoy Major Carrier Discounts</li>
<li>Save 50% or more on extra insurance</li>
<li>No integration or downloads required </li>
<li>Use with or without and online storefront</li>
</ul>
</div> <!-- close list Section-->
</div> <!-- Close Hero Tag -->
</div>
</section>
<!-- Quad Pod -->
<section>
<div class ="xl-spacer"></div>
<div class ="row">
<div class ="col-md-3">
<div class ="md-overall-padding uppercase bold headline md-reduce-content" style="border-right:1px solid #000">Ship Your Products, Documents and Samples With Ease…</div>
<div class="md-spacer"></div>
</div>
<div class ="col-md-9" >
<div class ="d-flex d-flex-rows flex-wrap justify-content-around">
<div class="step-icon">
<img src="images/box.svg" alt="package your box" height="75px" style="margin-left:10px"><p>Pick Your Box</p>
</div>
<div class="step-icon">
<img src="images/mouse.svg" alt="enter your details" height="75px" style="margin-left:30px"><p>Enter Your Details</p>
</div>
<div class="step-icon">
<img src="images/print.svg" alt="print your label" height="75px" style="margin-left:20px"><p>Print Your Label</p>
</div>
<div class="step-icon">
<img src="images/truck.svg" alt="ship your product" height="75px" style="margin-left:20px"><p>Ship Your Product</p>
</div>
</div><!-- Flex Wrap -->
</div>
</div>
</section>
<section>
<div class ="xxl-spacer"></div>
<div class ="container">
<div class ="row" style="border: 1px #777777 solid">
<div class ="col-md-5">
<div class ="headline uppercase bold md-tb-padding">Video: Discover Better Shipping With A Simple Change.</div>
<div class ="md-spacer"></div>
<div class ="subheadline"> Other Video's</div>
<a class="copy bold greyfont" href ="https://youtu.be/ba9L0_y5A0Y" >Shipthrifty tools in under 60 seconds </a>
<div class="md-spacer"></div>
</div>
<div class ="col-md-7 lg-overall-padding" >
<iframe width="560" height="315" src="https://www.youtube.com/embed/EmxnwA6Cqow" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div></div>
</section>
<!-- Rate Section -->
<section>
<div class="xl-spacer"></div>
<div class ="container-fluid" style="background-color:#f6f6f6">
<div class ="xl-spacer"></div>
<div id="geo-section">
<div class ="owl-carousel owl-geolocate">
<div class ="items" data-hash="northeast">
<div class ="row">
<div class ="col-md-3 col-sm-12 lg-overall-padding" style="background-color:#000;color:#fff">
<div class ="headline bold uppercase md-overall-padding">Your Rate Journey Has Begun...</div>
<div class ="subheadline md-overall-padding">
People in the Northeast know that there is nothing better than NYC or the beaches of cape cod. That’s why they ship with Shipthrifty and save faster then a NY minute.
<div class="md-spacer"></div>
<a href="https://www.shipthrifty.com" class="copy bold " style="color:#ffffff;">Check Our Rates ></a>
</div>
</div>
<div class ="col-1"></div>
<div class ="col-md-8 col-sm-12">
<div class ="d-flex justify-content-end">
<ul class="nav nav-link ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Service Type</a>
<div class="dropdown-menu">
<a class="dropdown-item" id="nepills-2day-tab" data-toggle="pill" href="#netwoday" role="tab" aria-controls="pills-2day" aria-selected="true">2-Day</a>
<a class="dropdown-item" id="nepills-Overnight-tab" data-toggle="pill" href="#neovernight" role="tab" aria-controls="pills-overnight" aria-selected="true">Overnight</a>
<a class="dropdown-item" id="nepills-Ground-tab" data-toggle="pill" href="#neground" role="tab" aria-controls="pills-ground" aria-selected="true">Ground</a>
</div>
</li>
</ul></div>
<div class="tab-content" id="pills-tabContent1">
<div class="tab-pane fade show active" id="netwoday" role="tabpanel" aria-labelledby="pills-2day-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px">2 Day Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Fast: 2 Day Delivery offers you the speed of expedited delivery but the cost savings compared to overnight.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $9.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $7.00</div>
</div>
</div>
<div class ="md-spacer"> </div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="neovernight" role="tabpanel" aria-labelledby="pills-overnight-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Overnight Packages</div>
<div class ="copy"style="margin-left:30px"> Next Day: Next Day offers Overnight Delivery for your critical documents and packages. When price is not an option and time is of the essence next day is the way to go.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="neground" role="tabpanel" aria-labelledby="pills-ground-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Ground Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Non Critical shipments move via ground it is the most common shipment method for people who are looking to save. However still want tracking and other options that are available in the faster: 2 day and overnight delivery.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
</div>
</div>
</div><!--Close Row-->
</div><!-- NE Carousel Item -->
<div class ="items" data-hash="southwest">
<div class ="row">
<div class ="col-md-3 col-sm-12 lg-overall-padding" style="background-color:#000;color:#fff">
<div class ="headline bold uppercase md-overall-padding">Your Rate Journey Has Begun...</div>
<div class ="subheadline md-overall-padding">
The Southwest home of Texas and the start of the great American frontier happens to be the birthplace of shipping. We thank you for getting it all started. We have it from here though... (No horses required)
<br>
<div class="md-spacer"></div>
<a href="https://www.shipthrifty.com" class="copy bold" style="color:#ffffff;">Check Our Rates ></a>
</div>
</div>
<div class ="col-1"></div>
<div class ="col-md-8 col-sm-12">
<div class ="d-flex justify-content-end">
<ul class="nav nav-link ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Service Type</a>
<div class="dropdown-menu">
<a class="dropdown-item" id="swpills-2day-tab" data-toggle="pill" href="#swtwoday" role="tab" aria-controls="pills-2day" aria-selected="true">2-Day</a>
<a class="dropdown-item" id="swpills-Overnight-tab" data-toggle="pill" href="#swovernight" role="tab" aria-controls="pills-overnight" aria-selected="true">Overnight</a>
<a class="dropdown-item" id="swpills-Ground-tab" data-toggle="pill" href="#swground" role="tab" aria-controls="pills-ground" aria-selected="true">Ground</a>
</div>
</li>
</ul></div>
<div class="tab-content" id="pills-tabContent2">
<div class="tab-pane fade show active" id="swtwoday" role="tabpanel" aria-labelledby="pills-2day-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px">2 Day Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Fast: 2 Day Delivery offers you the speed of expedited delivery but the cost savings compared to overnight.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $7.00</div>
</div>
</div>
<div class ="md-spacer"> </div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="swovernight" role="tabpanel" aria-labelledby="pills-overnight-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Overnight Packages</div>
<div class ="copy"style="margin-left:30px"> Next Day: Next Day offers Overnight Delivery for your critical documents and packages. When price is not an option and time is of the essence next day is the way to go.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="swground" role="tabpanel" aria-labelledby="pills-ground-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Ground Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Non Critical shipments move via ground it is the most common shipment method for people who are looking to save. However still want tracking and other options that are available in the faster: 2 day and overnight delivery.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York </div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
</div>
</div>
</div><!--Close Row-->
</div><!-- NW Carousel Item -->
<div class ="items" data-hash="northwest">
<div class ="row">
<div class ="col-md-3 col-sm-12 lg-overall-padding" style="background-color:#000;color:#fff">
<div class ="headline bold uppercase md-overall-padding">Your Rate Journey Has Begun...</div>
<div class ="subheadline md-overall-padding">
People in the Northwest know there is nothing better than lakes, farmland, and taking long walks on beautiful trails. Shipthrifty provides more of that and less shipping anxiety.
<br>
<div class="md-spacer"></div>
<a href="https://www.shipthrifty.com" class="copy bold" style="color:#ffffff;">Check Our Rates ></a>
</div>
</div>
<div class ="col-1"></div>
<div class ="col-md-8 col-sm-12">
<div class ="d-flex justify-content-end">
<ul class="nav nav-link ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Service Type</a>
<div class="dropdown-menu">
<a class="dropdown-item" id="nwpills-2day-tab" data-toggle="pill" href="#nwtwoday" role="tab" aria-controls="pills-2day" aria-selected="true">2-Day</a>
<a class="dropdown-item" id="nwpills-Overnight-tab" data-toggle="pill" href="#nwovernight" role="tab" aria-controls="pills-overnight" aria-selected="true">Overnight</a>
<a class="dropdown-item" id="nwpills-Ground-tab" data-toggle="pill" href="#nwground" role="tab" aria-controls="pills-ground" aria-selected="true">Ground</a>
</div>
</li>
</ul></div>
<div class="tab-content" id="pills-tabContent3">
<div class="tab-pane fade show active" id="nwtwoday" role="tabpanel" aria-labelledby="pills-2day-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px">2 Day Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Fast: 2 Day Delivery offers you the speed of expedited delivery but the cost savings compared to overnight.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $7.00</div>
</div>
</div>
<div class ="md-spacer"> </div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="nwovernight" role="tabpanel" aria-labelledby="pills-overnight-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Overnight Packages</div>
<div class ="copy"style="margin-left:30px"> Next Day: Next Day offers Overnight Delivery for your critical documents and packages. When price is not an option and time is of the essence next day is the way to go.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="nwground" role="tabpanel" aria-labelledby="pills-ground-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Ground Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Non Critical shipments move via ground it is the most common shipment method for people who are looking to save. However still want tracking and other options that are available in the faster: 2 day and overnight delivery.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York </div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> California</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
</div>
</div>
</div><!--Close Row-->
</div><!-- SW Carousel Item -->
<div class ="items" data-hash="westcoast">
<div class ="row">
<div class ="col-md-3 col-sm-12 lg-overall-padding" style="background-color:#000;color:#fff">
<div class ="headline bold uppercase md-overall-padding">Your Rate Journey Has Begun...</div>
<div class ="subheadline md-overall-padding">
The West Coast is the home of movie stars and beautiful beaches. Where dreams are made, and packages sent from. Autographs are welcome.
<br>
<div class ="md-spacer"></div>
<a href="https://www.shipthrifty.com" class="copy bold" style="color:#ffffff;">Check Our Rates ></a>
</div>
</div>
<div class ="col-1"></div>
<div class ="col-md-8 col-sm-12">
<div class ="d-flex justify-content-end">
<ul class="nav nav-link ">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Service Type</a>
<div class="dropdown-menu">
<a class="dropdown-item" id="wpills-2day-tab" data-toggle="pill" href="#wtwoday" role="tab" aria-controls="pills-2day" aria-selected="true">2-Day</a>
<a class="dropdown-item" id="wpills-Overnight-tab" data-toggle="pill" href="#wovernight" role="tab" aria-controls="pills-overnight" aria-selected="true">Overnight</a>
<a class="dropdown-item" id="wpills-Ground-tab" data-toggle="pill" href="#wground" role="tab" aria-controls="pills-ground" aria-selected="true">Ground</a>
</div>
</li>
</ul></div>
<div class="tab-content" id="pills-tabContent4">
<div class="tab-pane fade show active" id="wtwoday" role="tabpanel" aria-labelledby="pills-2day-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px">2 Day Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Fast: 2 Day Delivery offers you the speed of expedited delivery but the cost savings compared to overnight.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $7.00</div>
</div>
</div>
<div class ="md-spacer"> </div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="wovernight" role="tabpanel" aria-labelledby="pills-overnight-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Overnight Packages</div>
<div class ="copy"style="margin-left:30px"> Next Day: Next Day offers Overnight Delivery for your critical documents and packages. When price is not an option and time is of the essence next day is the way to go.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $4.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $6.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
<div class="tab-pane fade" id="wground" role="tabpanel" aria-labelledby="pills-ground-tab">
<div class ="subheadline bold sm-tb-padding" style="margin-left:30px"> Ground Packages</div>
<div class ="copy"style="margin-left:30px"> Economical and Non Critical shipments move via ground it is the most common shipment method for people who are looking to save. However still want tracking and other options that are available in the faster: 2 day and overnight delivery.</div>
<div class="std-spacer"></div>
<div class ="md-spacer"></div>
<div class ="subheadline uppercase bold" style="margin-left:30px;text-align:center"> Shipping to the Following States People Save on Average...</div>
<div class ="md-spacer"></div>
<div class ="d-flex d-flex-rows flex-wrap justify-content-around rate-box-container">
<div class ="rate-box">
<div class ="copy" style="text-align:center"> New York </div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Texas</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Colorado</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
<div class ="rate-box">
<div class ="copy" style="text-align:center"> Minnesota</div>
<div class ="price-number" style="font-size:50px;padding-top:15px;text-align:center;color:#222222"> $5.00</div>
</div>
</div>
<div class ="fineprint md-overall-padding bold">* when compared to major carriers comparable rates of service.</div>
</div>
</div>
</div>
</div><!--Close Row-->
</div><!-- W Carousel Item -->
</div>
<div class="xl-spacer"></div>
</div><!-- Close Geo Section Tag -->
</div><!--Close Container -->
</div>
<div class ="xl-spacer"></div>
</section>
<!-- Wayfinder -->
<section>
<div class ="md-spacer"></div>
<div class ="wayfinder" style="width:100%;height:170px;background-color:#000;color:#fff">
<div class ="d-flex d-flex-rows flex-wrap justify-content-between">
<div class ="lg-overall-padding special bold uppercase"> Looking For Specific Rates ?</div>
<div class="box-product-cta lg-lr-padding uppercase" ><div class ="cta-copy"><a href="https://www.shipthrifty.com/" style="color:#ffffff">Check Rates > </a></div></div>
</div>
</div> <!-- d flex close tag-->
<div class ="xl-spacer"></div>
</section>
<!--Testimonals -->
<section>
<div class ="md-spacer"></div>
<div class="headline uppercase md-overall-padding">Testimonials From Our Clients </div>
<div class ="lg-overall-padding"></div>
<div class ="container">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row">
<div class ="col-md-3 col-sm-12">
<div class ="test-image-box">
</div>
</div>
<div class ="col-md-8 col-sm-12">
<div class ="testomonial-container">
<q> This service is perfect for both a small home-based business like mine and a larger business. Not only is the service excellent, but I also save money which means I make more money. Highly recommended for anyone that ships packages domestically or internationally. Can’t say enough good things! You would be doing yourself a disservice not to give Shipthrifty a try!!
</q><br><b>
Chris Ommen – Small Business Owner</b>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class ="col-md-3 col-sm-12">
<div class ="test-image-box">
</div>
</div>
<div class ="col-md-8 col-sm-12">
<div class ="testomonial-container">
<q> I own a small wood working business and ship my art pieces all over the country. The extra cost of shipping can mean the difference between getting and not getting a client. I use Shipthrifty to compare, ship and track my packages. I save money on each and every shipment. The website is easy and user friendly. It has saved me much needed time as it compares the leading shipping companies all in one place. I am extremely happy to be saving money with Shipthrifty.
</q><br><b>
Eric Kruse, Owner - Signed In Wood</b>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class ="col-md-3 col-sm-12">
<div class ="test-image-box">
</div>
</div>
<div class ="col-md-8 col-sm-12">
<div class ="testomonial-container">
<q> We learned about Shipthrifty from the Minneapolis post office when we reached out to them looking for a simple cloud and browser-based shipping option that was flexible and could easily track what we needed to do and manage it. Shipthrifty is a simple tool for our customer service people to use that's very stable and makes my life easier. It’s wonderful that I can create a label very easily and even send one to someone to affix on a box to send back to me if need be. We've turned into a virtual, paperless company this way other than printing a label. One of the things I really like about Shipthrifty is its responsiveness. If there is a problem, I just email, or ring and Rob is on it
</q><br><b>
Lonnie K. - Operations Manager US, Global Kinetics
</b>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class ="col-md-3 col-sm-12">
<div class ="test-image-box">
</div>
</div>
<div class ="col-md-8 col-sm-12">
<div class ="testomonial-container">
<q> I heard about the great things that Shipthrifty.com was doing for our nation's heroes so I wanted to jump on board! I have used many shipping services in the past and Shipthrifty.com is by far the easiest and most user-friendly system I have used. I mailed 40 packages in a few clicks and was able to track each and every one of them. Thanks for offering a great system and for helping out our military!
</q><br><b>
Jeremiah Miller, Veteran – 4 Seasons Athletics</b>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class ="xl-spacer"></div>
</section>
<!-- Features -->
<section >
<div id="features"style ="border:4px solid #000; margin:10px">
<div class ="xl-spacer"></div>
<div class ="headline bold uppercase" style="text-align:center">Enjoy Better Shipping</div>
<div class ="copy md-overall-padding" style="text-align:center">All you need is a computer with a Chrome Browser and a printer. We'll train anyone on your team to be a shipping expert in less than 10-minutes, and all it takes to switch is creating your account!
Get brilliant shipping tools with simple reporting and no monthly or integration service fees; whether you send a few packages at a time or thousands, you can do it with ease.
We also offer exceptional savings on large, heavy, or expensive packages, overnight deliveries, and if you need extra insurance, you'll save big time. We'd like to be part of your team.</div>
<div class ="xl-spacer"></div>
<div class ="row" style="margin:10px">
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat"style="text-align: center">
<i class="far fa-smile fa-4x"></i>
<div class="copy uppercase"> No Monthly Fees</div>
<div class ="desc-copy">The Shipthrifty tools are online and free to use from wherever you
are. Unlock all our features when you create your account. We can also integrate with
over 350 different applications and don’t charge any fees for that either. </div>
<div class ="md-spacer"></div>
</div></div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat"style="text-align: center">
<i class="far fa-toolbox fa-4x"></i>
<div class="copy uppercase"> Simple Batch Shipping Tools</div>
<div class ="desc-copy">Create shipping labels on a single screen that shows
your lowest price shipping option first. Use a single click to see more shipping options
and even automatically forward tracking notifications to your client. Our exclusive action
icon shortcuts eliminate data entry and multiple screens views. </div>
<div class ="md-spacer"></div>
</div></div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat"style="text-align: center">
<i class="far fa-upload fa-4x"></i>
<div class="copy uppercase"> Upload Addresses or Entire Orders</div>
<div class ="desc-copy">Utilize our batch upload features to add
addresses to your address book from other mediums for easy input into Shipthrifty. If
you provide the addresses in an excel file, we can even import them to your address
book for you. You can also upload an entire shipment using our Label Template, which
will add your labels to the batch shipping tool when you click the upload. </div>
<div class ="md-spacer"></div>
</div> </div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-file-spreadsheet fa-4x"></i>
<div class="copy uppercase"> Edit Like A Spreadsheet</div>
<div class ="desc-copy">Since we lay the label sections out like an Excel file, you
can see all your entries and edit as you do with a spreadsheet. Double click on a field to
change up your details, save an order and come back to it later, and even export your
shipment into an excel file to match up your orders with your packages. The tools
automatically number your packages as another checkpoint to ensure you get the right
packages with the correct labels.</div>
<div class ="md-spacer"></div>
</div> </div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-money-bill-wave fa-4x"></i>
<div class="copy uppercase"> Best Price Displays First</div>
<div class ="desc-copy">When you enter your shipping details, the tools display the
lowest price options first. Use the See More Options Button to learn about other services
that are available for you to use. Pick what’s best for you based on price, timing, or
carrier.</div>
<div class ="md-spacer"></div>
</div></div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-copy fa-4x"></i>
<div class="copy uppercase"> Copy Labels</div>
<div class ="desc-copy">This feature is in the batch shipping tools and works excellent if you are
sending more than one package to the same person. Just click the copy icon in the
action tools and enter how many copies you want, all with a single click. Skip the data
entry and edit any package details as needed.</div>
<div class ="md-spacer"></div>
</div> </div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-window-close fa-4x"></i>
<div class="copy uppercase"> Cancel Orders</div>
<div class ="desc-copy">If you make a mistake on your order or someone cancels their order,
you can cancel your label order on Shipthrifty. Labels can be canceled for up to 10 days
if the carrier has not scanned them, and your payment source will automatically be
refunded. (Note - Wallet transactions refund immediately other payment methods
process within 3-7 business days.)</div>
<div class ="md-spacer"></div>
</div></div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-scanner fa-4x"></i>
<div class="copy uppercase"> Track Packages</div>
<div class ="desc-copy">Get live tracking updates or view the My Tracking page in your
account to know exactly where your packages are. You can also enter a tracking
number in the tracking field on Shipthrity.com or the corresponding carrier website. Enter
your customer's email address when you create the label, and they can automatically get
tracking updates too.</div>
<div class ="md-spacer"></div>
</div>
</div>
<div class ="col-md-3 col-sm-12 md-tb-padding">
<div class ="hub-cat" style="text-align: center">
<i class="far fa-file-chart-pie fa-4x"></i>
<div class="copy uppercase"> Automatic Reporting</div>
<div class ="desc-copy">We know the importance of keeping track of your shipments, so
we automatically do it all for you. From historical reports to shipping volumes, you’ll have