-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2325 lines (2274 loc) · 290 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>
<!--[if IE 7]>
<html class="ie ie7" lang="en-US"
prefix="og: http://ogp.me/ns#" prefix="og: http://ogp.me/ns#" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" lang="en-US"
prefix="og: http://ogp.me/ns#" prefix="og: http://ogp.me/ns#" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html lang="en-US" prefix="og: http://ogp.me/ns#" prefix="og: http://ogp.me/ns#" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="http://5starlimobusrentals.com/xmlrpc.php">
<!--[if lt IE 9]>
<script src="http://5starlimobusrentals.com/wp-content/themes/scalia/js/html5.js"></script>
<![endif]-->
<title>Wedding Limo Party Bus Service Chicago Trolley Cheap Limo Rental</title>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" type="text/javascript">//<![CDATA[
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || [];
var gtm4wp_scrollerscript_debugmode = false;
var gtm4wp_scrollerscript_callbacktime = 100;
var gtm4wp_scrollerscript_readerlocation = 150;
var gtm4wp_scrollerscript_contentelementid = "7556891";
var gtm4wp_scrollerscript_scannertime = 60;
//]]>
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<!-- All in One SEO Pack 2.11 by Michael Torbert of Semper Fi Web Design[947,1027] -->
<link rel="author" href="https://plus.google.com/u/1/108241847389799473913"/>
<link rel="publisher" href="https://twitter.com/5starlimo4u"/>
<meta name="description" content="5 star limo Party Bus Rentals and Trolleys. Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals"/>
<meta name="keywords" content="party bus rental,wedding limo bus rental,chicago michigan wine tours,chicago notre dame tailgates,prom party bus rental,rent a,"/>
<meta name="msvalidate.01" content="36ec1b54e1bf42f1871a9e4173fe1414"/>
<meta name="p:domain_verify" content="AUrPLdYeiXzJxx3XVN5J5e-2_-zHFPv1VePQ5stEg2Mg7ABH7AAAAAA"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite", "name": "5 Star Limo Party Bus Rental Chicago Trolley ", "potentialAction": {
"@type": "SearchAction",
"target": "http://5starlimobusrentals.com/?s={search_term}",
"query-input": "required name=search_term"
}, "url": "http://5starlimobusrentals.com/"
}
</script>
<meta name="geo.region" content="US-IL"/>
<meta name="geo.placename" content="Plainfield"/>
<meta name="geo.position" content="41.575934;-88.243443"/>
<meta name="ICBM" content="41.575934, -88.243443"/>
<link rel="canonical" href="http://5starlimobusrentals.com/"/>
<meta property="og:title" content="Wedding Limo Party Bus Service Chicago Trolley Cheap Limo Rental"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://5starlimobusrentals.com/"/>
<meta property="og:image" content="http://5starlimobusrentals.com/wp-content/uploads/2017/11/5star-wedding-party-bus.jpg"/>
<meta property="og:site_name" content="5 Star Limo Party Bus Rental Chicago Trolley"/>
<meta property="fb:admins" content="51857373"/>
<meta property="fb:app_id" content="1443479255772211"/>
<meta property="og:description" content="5 star limo Party Bus Rentals and Trolleys. Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="Twitter.com/5starlimo4u"/>
<meta name="twitter:creator" content="@5starlimo4u"/>
<meta name="twitter:domain" content="twitter/5starlimo4u"/>
<meta name="twitter:title" content="Wedding Limo Party Bus Service Chicago Trolley Cheap Limo Rental"/>
<meta name="twitter:description" content="5 star limo Party Bus Rentals and Trolleys. Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals"/>
<meta name="twitter:image" content="http://5starlimobusrentals.com/wp-content/uploads/2018/12/25-passenger-party-bus-inside.jpg"/>
<meta itemprop="image" content="http://5starlimobusrentals.com/wp-content/uploads/2017/11/5star-wedding-party-bus.jpg"/>
<script type="application/ld+json">
{ "@context" : "http://schema.org",
"@type" : "Organization",
"name" : "5 STAR LIMO BUS RENTAL ",
"url" : "http://5starlimobusrentals.com",
"sameAs" : ["https://www.facebook.com/5tarlimobusrentals/"]
}
</script>
<script type="text/javascript">
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-106846489-1', { 'cookieDomain': '5starlimobus','allowLinker': true } );
// Plugins
ga('require', 'linker');ga('linker:autoLink', ['www.5starbusrentals.com', 'chicagobusrentals.net', 'partybusrentchicago.com', '5tarlimos.com', 'buslimorental.com', 'napervillelimorentals.com', '5tarlimobusrentals.com'] );ga('require', 'ec');ga('require', 'linkid', 'linkid.js');ga('set', 'anonymizeIp', true);ga('require', 'outboundLinkTracker');
ga('send', 'pageview');
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
<script async src="http://5starlimobusrentals.com/wp-content/plugins/all-in-one-seo-pack/public/js/vendor/autotrack.js"></script>
<!-- /all in one seo pack -->
<!-- This site is optimized with the Yoast SEO Premium plugin v9.5 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="5 star limo Party Bus Rentals and Trolleys. Wedding Limo party Bus Shuttle Service Airport. Prom Kids Party Bus Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals"/>
<link rel="canonical" href="http://5starlimobusrentals.com/"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Wedding Party Bus Service Chicago Trolley Cheap Limo Rentall wine tours %"/>
<meta property="og:description" content="party bus rental, wedding limo bus rental, chicago michigan wine tours, Notre Dame Tailgate, Prom Party Bus Rental, Party Limo Rental, Trolley Rental Chicago, Cheap Party Bus Rental Chicago Chicago Suburbs. Plainfield Party Bus Rental, Tinley park Limo Rental"/>
<meta property="og:url" content="http://5starlimobusrentals.com/"/>
<meta property="og:site_name" content="Party Bus Rental Chicago Wedding Transportation Trolley"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:description" content="5 star limo Party Bus Rentals and Trolleys. Wedding Limo party Bus Shuttle Service Airport. Prom Kids Party Bus Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals"/>
<meta name="twitter:title" content="Wedding Party Bus Service Chicago Trolley Cheap Limo Rentall wine tours %"/>
<meta name="twitter:image" content="http://5starlimobusrentals.com/wp-content/uploads/2014/07/xwedding-5starlimobusrentals-limo-wedding-wire.png.pagespeed.ic_.XezrTcr2uK.png"/>
<meta name="twitter:creator" content="@5starlimo4u"/>
<script type='application/ld+json'>{"@context":"https://schema.org","@type":"WebSite","@id":"http://5starlimobusrentals.com/#website","url":"http://5starlimobusrentals.com/","name":"Party Bus Rental Chicago Wedding Transportation Trolley","potentialAction":{"@type":"SearchAction","target":"http://5starlimobusrentals.com/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
<script type='application/ld+json'>{"@context":"https://schema.org","@type":"Organization","url":"http://5starlimobusrentals.com/","sameAs":[],"@id":"http://5starlimobusrentals.com/#organization","name":"5 star limo bus rentals","logo":""}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//ajax.googleapis.com'/>
<link rel='dns-prefetch' href='//s0.wp.com'/>
<link rel='dns-prefetch' href='//p.jwpcdn.com'/>
<link rel='dns-prefetch' href='//fonts.googleapis.com'/>
<link rel='dns-prefetch' href='//s.w.org'/>
<link rel="alternate" type="application/rss+xml" title="Party Bus Rental Chicago Wedding Transportation Trolley » Feed" href="http://5starlimobusrentals.com/feed"/>
<link rel="alternate" type="application/rss+xml" title="Party Bus Rental Chicago Wedding Transportation Trolley » Comments Feed" href="http://5starlimobusrentals.com/comments/feed"/>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" type="text/javascript">//<![CDATA[
dataLayer.push({"siteID":"1","siteName":"Party Bus Rental Chicago Wedding Transportation Trolley","visitorLoginState":"logged-out","visitorIP":"10.26.52.195","pageTitle":"Wedding Party Bus Service Chicago Trolley Cheap Limo Rentall wine tours %","pagePostType":"frontpage","pagePostType2":"single-page","pagePostDate":"July 20, 2018","pagePostDateYear":"2018","pagePostDateMonth":"07","pagePostDateDay":"20","browserName":"Chrome","browserVersion":"63.0.3239.108","browserEngineName":"Blink","browserEngineVersion":"","osName":"OS X","osVersion":"10.14.3","deviceType":"desktop","deviceManufacturer":"Apple","deviceModel":"Macintosh","gtm.whitelist":["d","jsm","c","k","e","j","v","r","f","u","v"],"gtm.blacklist":["mpm","m6d","tc"]});//]]>
</script>
<script data-cfasync="false">//<![CDATA[
(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=
'//www.googletagmanager.com/gtm.'+'js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W4HZ94R');//]]>
</script>
<!-- End Google Tag Manager -->
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/5starlimobusrentals.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.0.3"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel='stylesheet' id='layerslider-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/css/layerslider.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='layerslider-origami-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/plugins/origami/layerslider.origami.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='layerslider-popup-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='wp-block-library-css' href='https://c0.wp.com/c/5.0.3/wp-includes/css/dist/block-library/style.min.css' type='text/css' media='all'/>
<link rel='stylesheet' id='jetpack-email-subscribe-css' href='https://c0.wp.com/p/jetpack/6.9/modules/shortcodes/css/jetpack-email-subscribe.css' type='text/css' media='all'/>
<link rel='stylesheet' id='contact-form-7-css' href='http://5starlimobusrentals.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.1.1' type='text/css' media='all'/>
<link rel='stylesheet' id='cookie-notice-front-css' href='http://5starlimobusrentals.com/wp-content/plugins/cookie-notice/css/front.min.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='NextGEN-css' href='http://5starlimobusrentals.com/home/qoramqsk6wdm/public_html/wp-content/plugins/nextcellent-gallery-nextgen-legacy1/css/Black_Minimalism.css?ver=1.0.0' type='text/css' media='screen'/>
<link rel='stylesheet' id='NextCellent-Framework-css' href='http://5starlimobusrentals.com/wp-content/plugins/nextcellent-gallery-nextgen-legacy1/css/framework-min.css?ver=1.0.1' type='text/css' media='screen'/>
<link rel='stylesheet' id='jetpack_likes-css' href='https://c0.wp.com/p/jetpack/6.9/modules/likes/style.css' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-icons-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/icons.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-reset-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/reset.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-grid-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/grid.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='parent-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/style.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='icons-rewrite-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia-zaro-child/css/icons.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia-zaro-child/style.css?ver=5.0.3' type='text/css' media='all'/>
<!--[if lt IE 9]>
<link rel='stylesheet' id='scalia-ie-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/ie.css?ver=5.0.3' type='text/css' media='all' />
<![endif]-->
<link rel='stylesheet' id='scalia-header-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/header.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-widgets-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/widgets.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-portfolio-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/portfolio.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-custom-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia-zaro-child/css/custom.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='js_composer_front-css' href='http://5starlimobusrentals.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=5.6' type='text/css' media='all'/>
<link rel='stylesheet' id='fancybox-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/js/fancyBox/jquery.fancybox.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-vc_elements-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/vc_elements.css?ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='load-google-fonts-css' href='//fonts.googleapis.com/css?family=Roboto%3A300%2C100%7CPeddana%3Aregular%7CSource+Sans+Pro%3A300%2C300italic%7CRoboto+Condensed%3A300%2Cregular&subset=latin-ext%2Cgreek%2Ccyrillic-ext%2Cgreek-ext%2Clatin%2Cvietnamese%2Ccyrillic%2Ctelugu&ver=5.0.3' type='text/css' media='all'/>
<link rel='stylesheet' id='eu-cookie-law-style-css' href='https://c0.wp.com/p/jetpack/6.9/modules/widgets/eu-cookie-law/style.css' type='text/css' media='all'/>
<link rel='stylesheet' id='jetpack-top-posts-widget-css' href='https://c0.wp.com/p/jetpack/6.9/modules/widgets/top-posts/style.css' type='text/css' media='all'/>
<script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?ver=1.8.3'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/wp-google-analytics/wp-google-analytics.js?ver=0.0.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var cnArgs = {"ajaxurl":"http:\/\/5starlimobusrentals.com\/wp-admin\/admin-ajax.php","hideEffect":"fade","onScroll":"yes","onScrollOffset":"100","cookieName":"cookie_notice_accepted","cookieValue":"true","cookieTime":"2592000","cookiePath":"\/","cookieDomain":"5starlimobusrentals.com","redirection":"","cache":"1","refuse":"yes","revoke_cookies":"1","revoke_cookies_opt":"automatic","secure":"0"};
/* ]]> */
</script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/cookie-notice/js/front.min.js?ver=1.2.46'></script>
<script type='text/javascript' src='http://p.jwpcdn.com/6/12/jwplayer.js?ver=5.0.3'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-contact-form-7-tracker.js?ver=1.9.1'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-form-move-tracker.js?ver=1.9.1'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/duracelltomi-google-tag-manager/js/analytics-talk-content-tracking.js?ver=1.9.1'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/nextcellent-gallery-nextgen-legacy1/js/owl.carousel.min.js?ver=2'></script>
<script type='text/javascript' src='https://c0.wp.com/p/jetpack/6.9/_inc/build/postmessage.min.js'></script>
<script type='text/javascript' src='https://c0.wp.com/p/jetpack/6.9/_inc/build/jquery.jetpack-resize.min.js'></script>
<meta name="generator" content="Powered by LayerSlider 6.7.6 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress."/>
<!-- LayerSlider updates and docs at: https://layerslider.kreaturamedia.com -->
<link rel='https://api.w.org/' href='http://5starlimobusrentals.com/wp-json/'/>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://5starlimobusrentals.com/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://5starlimobusrentals.com/wp-includes/wlwmanifest.xml"/>
<meta name="generator" content="WordPress 5.0.3"/>
<link rel='shortlink' href='https://wp.me/P9nYqR-5a'/>
<link rel="alternate" type="application/json+oembed" href="http://5starlimobusrentals.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2F5starlimobusrentals.com%2F"/>
<link rel="alternate" type="text/xml+oembed" href="http://5starlimobusrentals.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2F5starlimobusrentals.com%2F&format=xml"/>
<!-- <meta name="NextGEN" version="1.9.35" /> -->
<!-- This site is optimized with the Schema plugin v1.7.3 - https://schema.press -->
<script type="application/ld+json">[{"@context":"http:\/\/schema.org\/","@type":"WPHeader","url":"http:\/\/5starlimobusrentals.com","headline":"Party Bus Rental Chicago Wedding Transportation Trolley","description":"Weddings Michigan Wine Tours Notre Dame Tailgates 5 Star Service"},{"@context":"http:\/\/schema.org\/","@type":"WPFooter","url":"http:\/\/5starlimobusrentals.com","headline":"Party Bus Rental Chicago Wedding Transportation Trolley","description":"Weddings Michigan Wine Tours Notre Dame Tailgates 5 Star Service","copyrightYear":"2018"}]</script>
<!-- This site is optimized with the Schema plugin v1.7.3 - https://schema.press -->
<script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"Organization","@id":"#organization","name":"5 star Limo Bus Rentals Party Bus Rentals & Trolley","url":"http:\/\/5starlimobusrentals.com\/","logo":"http:\/\/5starlimobusrentals.com\/wp-content\/uploads\/2018\/05\/5-star-limo225-big-logo.png","contactPoint":{"@type":"ContactPoint","telephone":"708-272-7188","url":"Https:\/\/www.5starbusrentals.com\/contact","contactType":"customer support"},"sameAs":["https:\/\/plus.google.com\/113616506143623122445","https:\/\/www.facebook.com\/5tarlimobusrentals\/","Https:\/\/Twitter.com\/5starlimo4u","Https:\/\/instagram.com\/5starlimorentals","Http:\/\/Pinterest.com\/Chicagolandbus"]}</script>
<script type="text/javascript">jwplayer.defaults = { "ph": 2 };</script>
<script type="text/javascript">
if (typeof(jwp6AddLoadEvent) == 'undefined') {
function jwp6AddLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
}
</script>
<link rel='dns-prefetch' href='//v0.wordpress.com'/>
<link rel='dns-prefetch' href='//jetpack.wordpress.com'/>
<link rel='dns-prefetch' href='//s0.wp.com'/>
<link rel='dns-prefetch' href='//s1.wp.com'/>
<link rel='dns-prefetch' href='//s2.wp.com'/>
<link rel='dns-prefetch' href='//public-api.wordpress.com'/>
<link rel='dns-prefetch' href='//0.gravatar.com'/>
<link rel='dns-prefetch' href='//1.gravatar.com'/>
<link rel='dns-prefetch' href='//2.gravatar.com'/>
<link rel='dns-prefetch' href='//widgets.wp.com'/>
<link rel='dns-prefetch' href='//c0.wp.com'/>
<style type='text/css'>img#wpstats {
display: none;
}</style>
<!-- Facebook Pixel Code -->
<script type='text/javascript'>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
</script>
<!-- End Facebook Pixel Code -->
<script type='text/javascript'>
fbq('init', '315312448937661', [], {
"agent": "wordpress-5.0.3-1.7.23"
});
</script>
<script type='text/javascript'>
fbq('track', 'PageView', []);
</script>
<!-- Facebook Pixel Code -->
<noscript>
<img height="1" width="1" style="display:none" alt="fbpx" src="https://www.facebook.com/tr?id=315312448937661&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="http://5starlimobusrentals.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]-->
<!-- This site is optimized with the Schema plugin v1.7.3 - https://schema.press -->
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "http://5starlimobusrentals.com",
"name": "Home"
}
}
]
}</script>
<style type="text/css">html:not( .jetpack-lazy-images-js-enabled ) .jetpack-lazy-image {
display: none;
}</style>
<script>
document.documentElement.classList.add(
'jetpack-lazy-images-js-enabled'
);
</script>
<link rel="icon" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-150x150.png" sizes="32x32"/>
<link rel="icon" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-256x256.png" sizes="192x192"/>
<link rel="apple-touch-icon-precomposed" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-256x256.png"/>
<meta name="msapplication-TileImage" content="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-300x300.png"/>
<style type="text/css" data-type="vc_custom-css">.post-slider-index .wpb_flexslider .flex-control-nav {
bottom: 60px !important;
}
.img-slider-resp img {
margin-top: 35px !important;
}
@media (max-width: 767px) {
.wpb_gallery_slides .fullwidth-block {
height: 1000px;
}
.custom-textbox .wpb_text_column {
padding-left: 10 !important;
padding-right: 0 !important;
}
.resp-middle {
text-align: center;
}
.post-slider-index .flex-control-nav {
display: none;
}
.img-slider-resp {
display: none;
}
}
@media (max-width: 340px) {
.wpb_gallery_slides .fullwidth-block {
height: 1200px;
}
}</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1548965299187 {
border-radius: 3px !important;
}
.vc_custom_1548965742454 {
border-radius: 2px !important;
}</style>
<noscript>
<style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style>
</noscript>
</head>
<body class="home page-template-default page page-id-320 page-parent cookies-not-set wpb-js-composer js-comp-ver-5.6 vc_responsive ">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W4HZ94R" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<br style="display:none;">
<div id="page" class="layout-fullwidth">
<a href="#page" class="scroll-top-button"></a>
<div id="top-area" class="top-area top-area-style-1">
<div class="container">
<div class="top-area-items clearfix">
<div class="top-area-socials">
<div class="socials">
<div class="socials-item twitter">
<a href="#" target="_blank" title="twitter">twitter</a>
</div>
<div class="socials-item facebook">
<a href="#" target="_blank" title="facebook">facebook</a>
</div>
<div class="socials-item linkedin">
<a href="#" target="_blank" title="linkedin">linkedin</a>
</div>
<div class="socials-item googleplus">
<a href="#" target="_blank" title="googleplus">googleplus</a>
</div>
<div class="socials-item stumbleupon">
<a href="#" target="_blank" title="stumbleupon">stumbleupon</a>
</div>
<div class="socials-item rss">
<a href="#" target="_blank" title="rss">rss</a>
</div>
</div>
</div>
<div class="top-area-search">
<form role="search" method="get" id="top-area-searchform" class="searchform" action="http://5starlimobusrentals.com/">
<div>
<input type="text" value="" name="s" id="top-area-s"/>
<button type="submit" id="top-area-searchsubmit" value="Search"></button>
</div>
</form>
</div>
<div class="top-area-contacts">
<div class="sc-contacts">
<div class="sc-contacts-item sc-contacts-address">14530 Colonial Pkwy, Plainfield IL 60544</div>
<div class="sc-contacts-item sc-contacts-phone"> +1-708-272-7188</div>
<div class="sc-contacts-item sc-contacts-email">
<a href="mailto:book@5starlimobusrentals.com">book@5starlimobusrentals.com</a>
</div>
</div>
</div>
</div>
</div>
</div>
<header id="site-header" class="site-header animated-header" role="banner">
<div class="container">
<div class="header-main logo-position-left">
<div class="site-title">
<div class="site-logo">
<a href="http://5starlimobusrentals.com/" rel="home"> <span class="logo logo-1x"><img src="http://s3-5starlimobusrentals.s3.amazonaws.com/wp-content/uploads/2018/05/5-star-limo225-big-logo.png" class="default" alt=""><img src="http://s3-5starlimobusrentals.s3.amazonaws.com/wp-content/uploads/2018/05/5-star-limo225-big-logo.png" class="small" alt=""></span> </a>
</div>
</div>
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<button class="menu-toggle dl-trigger">Primary Menu</button>
<ul id="primary-menu" class="nav-menu dl-menu styled no-responsive">
<li id="menu-item-13658" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13658 megamenu-first-element mobile-clickable">
<a href="/our-services">About Us</a>
</li>
<li id="menu-item-13654" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13654 megamenu-enable megamenu-first-element mobile-clickable">
<a target="_blank" href="https://www.5starbusrentals.com/request-a-quote-2.html">Request a Quote</a>
</li>
<li id="menu-item-12039" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-320 current_page_item menu-item-has-children menu-item-parent menu-item-12039 megamenu-enable megamenu-first-element mobile-clickable menu-item-active">
<a href="http://5starlimobusrentals.com/">Home</a>
<ul class="sub-menu megamenu-masonry dl-submenu styled" data-megamenu-columns="1" style="padding-left:45px; padding-right:45px; padding-top:29px; padding-bottom:50px; ">
<li id="menu-item-13032" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13032 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a href="/contact">Contact</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-12210" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-parent menu-item-12210 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a title="Party Bus Limo Rental Services" rel="Self" href="http://5starlimobusrentals.com/our-services-2">Our Services</a></span>
<ul class="sub-menu megamenu-masonry dl-submenu styled">
<li id="menu-item-7459" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7459 megamenu-has-icon mobile-clickable">
<a href="http://5starlimobusrentals.com/notre-dame-premium-tailgating/premium-tailgating" class=" megamenu-has-icon" data-icon="">Notre Dame Tailgate<span class="mega-label rounded-corners">TAILGATE</span></a>
</li>
<li id="menu-item-12211" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12211 megamenu-has-icon mobile-clickable">
<a href="http://5starlimobusrentals.com/party-bus-rentals-weddings-proms-concerts" class=" megamenu-has-icon" data-icon="">Girls Night</a>
</li>
<li id="menu-item-12123" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12123 mobile-clickable">
<a href="http://5starlimobusrentals.com/partybusrentalchicagosuburbs/night-on-the-town">Party Bus Night Out</a>
</li>
<li id="menu-item-12246" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12246 megamenu-has-icon mobile-clickable">
<a href="http://5starlimobusrentals.com/our-services-wedding" class=" megamenu-has-icon" data-icon="">Party Bus Wedding<span class="mega-label rounded-corners">Wedding</span></a>
</li>
<li id="menu-item-12984" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12984 megamenu-has-icon mobile-clickable">
<a href="http://5starlimobusrentals.com/chicago-to-michigan-wine-tours" class=" megamenu-has-icon" data-icon="">Chicago to Michigan Wine Tours<span class="mega-label rounded-corners">Wine</span></a>
</li>
<li id="menu-item-7776" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7776 megamenu-has-icon mobile-clickable">
<a href="http://5starlimobusrentals.com/holiday-light-tour" class=" megamenu-has-icon" data-icon="">Bus Light Tours<span class="mega-label rounded-corners">Holiday light tours</span></a>
</li>
</ul>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-14476" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-14476 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/cheap-party-bus-rentals.html" class=" megamenu-has-icon" data-icon="">Party Limo Blog</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-13319" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13319 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/portfolios/14-passenger-party-bus-rental-fleet">14 Passenger Party Bus Rental Fleet</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-14477" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-14477 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/portfolios/project-highlights-2" class=" megamenu-has-icon" data-icon="">15 passenger Party Bus</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-11815" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-11815 megamenu-first-element mobile-clickable" style="width: 300px;">
<span class="megamenu-column-header"><a title="24 Passenger Party Bus Portfolio" rel="me" href="http://5starlimobusrentals.com/portfolios/24-passenger-party-bus">25 Passenger Party Bus</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-13559" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-13559 megamenu-first-element" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/32-passenger-party-bus.html">32 Passenger Party Bus</a></span>
</li>
<li class="megamenu-new-row"></li>
<li id="menu-item-14468" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-14468 megamenu-first-element" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/portfolios/40-passenger-party-bus-rental">40 Passenger Party Bus Rental</a></span>
</li>
</ul>
</li>
<li id="menu-item-14414" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-parent menu-item-14414 megamenu-enable megamenu-first-element mobile-clickable">
<a href="http://5starlimobusrentals.com/index/5-star-limo-bus-party-bus-rental/shuttlebus-minibus">Shuttle Bus Rentals</a>
<ul class="sub-menu dl-submenu styled" data-megamenu-columns="3" style="padding-left:45px; padding-right:45px; padding-top:29px; padding-bottom:50px; ">
<li id="menu-item-14479" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-14479 megamenu-first-element" style="width: 300px;">
<span class="megamenu-column-header"><a href="http://5starlimobusrentals.com/chicago-bus-rentals.html">Chicago Bus Rentals</a></span>
</li>
</ul>
</li>
<li id="menu-item-12179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-parent menu-item-12179">
<a href="http://5starlimobusrentals.com/our-services-2">Rent a Bus</a>
<ul class="sub-menu dl-submenu styled">
<li id="menu-item-7178" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7178">
<a href="http://5starlimobusrentals.com/prom/kids-party-bus-prom-party-bus">Kids Party Bus prom party bus</a>
</li>
<li id="menu-item-13564" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13564">
<a href="http://5starlimobusrentals.com/portfolios/concerts">Concerts</a>
</li>
<li id="menu-item-13561" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13561">
<a href="http://5starlimobusrentals.com/portfolios/cheap-party-bus-rental">Cheap party Bus Rental</a>
</li>
<li id="menu-item-13565" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13565">
<a href="http://5starlimobusrentals.com/portfolios/limo-bus-rental-pro">Limo Bus Pro</a>
</li>
<li id="menu-item-14478" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-14478">
<a href="http://5starlimobusrentals.com/portfolios/concerts">Concerts</a>
</li>
<li id="menu-item-13562" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13562">
<a href="http://5starlimobusrentals.com/portfolios/chicago-michigan-wine-tours">CHICAGO MICHIGAN WINE TOURS</a>
</li>
<li id="menu-item-12099" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-12099">
<a title="Chicago Trolley Rental" href="http://5starlimobusrentals.com/portfolios/wedding-trolleys">Trolleys</a>
</li>
<li id="menu-item-13563" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13563">
<a href="http://5starlimobusrentals.com/portfolios/wedding-trolleys">Wedding Trolleys</a>
</li>
</ul>
</li>
<li id="menu-item-11806" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-parent menu-item-11806">
<a href="http://5starlimobusrentals.com/pages/services-faq-2/privacy-policy">Legal</a>
<ul class="sub-menu dl-submenu styled">
<li id="menu-item-13560" class="menu-item menu-item-type-post_type menu-item-object-scalia_pf_item menu-item-13560">
<a href="http://5starlimobusrentals.com/portfolios/sign-contract-make-deposit">How to sign your contract and make a deposit.</a>
</li>
<li id="menu-item-7814" class="_blank menu-item menu-item-type-custom menu-item-object-custom menu-item-7814">
<a target="_blank" rel="nofollow" href="https://chicagobusrentals.net">Web Store</a>
</li>
<li id="menu-item-11807" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11807">
<a title="legal" rel="legal" href="http://5starlimobusrentals.com/pages/services-faq-2/privacy-policy">privacy-policy</a>
</li>
</ul>
</li>
<li id="menu-item-12223" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12223 mobile-clickable">
<a href="http://5starlimobusrentals.com/chicago-trolley-rentals">Chicago Trolley Rentals</a>
</li>
<li id="menu-item-13413" class="menu-item menu-item-type-taxonomy menu-item-object-post_format menu-item-13413">
<a href="http://5starlimobusrentals.com/type/gallery">Gallery</a>
</li>
<li id="menu-item-13414" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13414 megamenu-enable megamenu-first-element mobile-clickable">
<a target="_blank" href="https://chicagobusrentals.net">On Line Store</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- #site-header -->
<div id="main" class="site-main">
<div id="main-content" class="main-content">
<div id="page-title" class="page-title-block page-title-style-1 has-background-image" style="background-image: url(http://5starlimobusrentals.com/wp-content/uploads/2018/12/5starlimobusrentals-30-passenger-2016-3-Tiffany-Party-Bus-.jpg);background-color: #000000;">
<div class="container">
<div class="page-title-title">
<h1 style=""> #1 Wedding Party Bus Rental Chicago Limo Trolley Cheap Limo Rental</h1>
</div>
<div class="page-title-excerpt" style="color: #5ed6f7;">Limo Bus Party Bus Trolley Rentals Chicagobusrentals.net
<br/>
party bus rental, wedding limo bus rental, chicago Michigan wine tours, Notre Dame Tailgate, Prom Part Bus Rental
</div>
</div>
</div>
<div class="block-content">
<div class="container">
<div class="panel row">
<div class="panel-center col-xs-12">
<article id="post-320" class="post-320 page type-page status-publish has-post-thumbnail hentry">
<div class="entry-content post-content">
<div class="vc_row wpb_row vc_row-fluid vc_custom_1548965299187 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-4">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_top-to-bottom top-to-bottom">
<div class="wpb_wrapper">
<h3>OUR GOALS</h3>
</div>
</div>
<div class="lazy-loading" data-ll-item-delay="0">
<div class="sc-textbox rounded-corners lazy-loading-item shadow-box" data-ll-effect="fading" style="border: 1px solid #d2dae1;">
<div class="sc-textbox-content" style="background-color: #f1f5f8;background-position: center top;">
<div class="clearboth"></div>
<div class="sc-divider" style="margin-bottom: -1px;"></div>
<div class="sc-dropcap sc-dropcap-shape-circle sc-dropcap-style-medium">
<span class="sc-dropcap-letter" style="color: #ffffff;background-color: #e2819e;">1</span>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><span style="color: #993366;">The most Reviews in Chicago </span></p>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: -7px;px;margin-bottom: 14px;border-color: #d2dae1;"></div>
<div class="sc-dropcap sc-dropcap-shape-circle sc-dropcap-style-medium">
<span class="sc-dropcap-letter" style="color: #ffffff;background-color: #8b729a;">2</span>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><span class="styled-subtitle" style="color: #800080;">24 7 Operator<br/></span></p>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: -7px;margin-bottom: 12px;border-color: #d2dae1;"></div>
<div class="sc-dropcap sc-dropcap-shape-circle sc-dropcap-style-medium">
<span class="sc-dropcap-letter" style="color: #ffffff;background-color: #65a1c0;">3</span>
</div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><span class="styled-subtitle" style="color: #333399;">Wine Tours and Notre Dame Tailgates </span></p>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-bottom: -18px;"></div>
</div>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: 29px;"></div>
<div class="lazy-loading">
<a class="sc-button lazy-loading-item" data-ll-effect="drop-right-without-wrap" href="/request-quote-service" target="_self" style="">learn more</a>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-6 vc_col-lg-4">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fade fade">
<div class="wpb_wrapper">
<p><span style="color: #3366ff;"><em>5 star limo party bus rentals</em> specializes in providing affordable exotic party limos our clients with prompt, luxurious and hassle free transportation for events ranging from Chicago bears tailgating, Chicago white sox tailgating, Chicago Cubs Milwaukee game tailgating, birthdays, weddings, bachelor/bachelorette parties to concerts and Chicago sporting events</span></p>
<div class="grammarly-disable-indicator">
<span style="color: #3366ff;"> </span>
</div>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_top-to-bottom top-to-bottom">
<div class="wpb_wrapper">
<p><img data-attachment-id="13287" data-permalink="http://5starlimobusrentals.com/home/tel-3" data-orig-file="http://5starlimobusrentals.com/wp-content/uploads/2018/01/tel-e1516051164137.png" data-orig-size="419,761" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","lens":""}" data-image-title="tel" data-image-description="" data-medium-file="http://5starlimobusrentals.com/wp-content/uploads/2018/01/tel-e1516051164137-165x300.png" data-large-file="http://5starlimobusrentals.com/wp-content/uploads/2018/01/tel-e1516051164137.png" class="aligncenter wp-image-13287 size-thumbnail" src="http://5starlimobusrentals.com/wp-content/uploads/2018/01/tel-e1515828899436-150x150.png" alt="" width="150" height="150"/></p>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: 26px;"></div>
<div class="sc-button-with-separator">
<div class="sc-button-sep-holder">
<div class="sc-button-separator sc-button-separator-double" style="border-color: #fcb424;"></div>
</div>
<div class="sc-button-sep-button">
<div class="centered-box">
<div class="lazy-loading">
<a class="sc-button lazy-loading-item" data-ll-effect="drop-right-without-wrap" href="/contact" target="_self" style="">Read more</a>
</div>
</div>
</div>
<div class="sc-button-sep-holder">
<div class="sc-button-separator sc-button-separator-double" style="border-color: #fcb424;"></div>
</div>
</div>
<div class="centered-box sc-image-centered-box">
<div class="sc-image sc-wrapbox sc-wrapbox-style-2 rounded-corners sc-wrapbox-position-centered" style="">
<div class="sc-wrapbox-inner">
<a href="http://5starlimobusrentals.com/wp-content/uploads/2018/02/246x0w.jpg" class="fancybox">
<img class="sc-wrapbox-element img-responsive" src="http://5starlimobusrentals.com/wp-content/uploads/2018/02/246x0w.jpg" alt="Local High School SandBurg Orland Park Features 5 star Limos Party Bus Rental for Prom Service DOWNLOAD THE APP CHECK US OUT"/>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wpb_column vc_column_container vc_col-sm-12 vc_col-lg-4">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_top-to-bottom top-to-bottom">
<div class="wpb_wrapper">
<h3>OUR SERVICES</h3>
</div>
</div>
<div class="preloader"></div>
<div class="sc_accordion wpb_content_element not-column-inherit lazy-loading" data-collapsible="no" data-active-tab="1">
<div class="sc_accordion_wrapper ui-accordion lazy-loading-item" data-ll-effect="fading">
<div class="sc_accordion_section group">
<div class="sc_accordion_header ui-accordion-header">
<a href="#chicago-limo-bus">Chicago Limo Bus</a>
</div>
<div class="sc_accordion_content ui-accordion-content vc_clearfix">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>We will help you customize your Trip Request to Save you the most money</p>
</div>
</div>
</div>
</div>
<div class="sc_accordion_section group">
<div class="sc_accordion_header ui-accordion-header">
<a href="#chicago-party-bus">Chicago Party Bus</a>
</div>
<div class="sc_accordion_content ui-accordion-content vc_clearfix">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>5 star limo Party Bus Rentals and Trolleys. Wedding Limo party Bus Shuttle Service Airport. Prom Kids Party Bus Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals</p>
</div>
</div>
</div>
</div>
<div class="sc_accordion_section group">
<div class="sc_accordion_header ui-accordion-header">
<a href="#chicago-party-bus-or-limo-bus-for-wedding">Chicago party Bus or limo bus for wedding</a>
</div>
<div class="sc_accordion_content ui-accordion-content vc_clearfix">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p>f you are looking for <b>Chicago Party Bus Rental & Trolley Wedding Limo Service</b> to make your wedding a special and a most memorable event of your life, you have come to the right place; we specialize in <b>Chicago Wedding limo Service</b>, <b>Bachelor Party Limousine Service Chicago </b>or <b>Bachelorette Party Limo Service Chicago </b>and Suburbs. We carry late model <b>SUV Limo</b> <b>and a</b> <b>Party Limo Bus</b> with full amenities and luxury driven by our professionally attired experience chauffeurs who have enough experience to take good care of your <b>Chicago Wedding Limo Service</b>, <b>Bachelor Party Limo Service Chicago</b>, <b>Bachelorette Party Limo Service Chicago</b> <b>and suburb</b>. With attention to the finest details our goal is to make your <b>wedding day</b> a memorable one…</p>
<div class="grammarly-disable-indicator"></div>
</div>
</div>
</div>
</div>
<div class="sc_accordion_section group">
<div class="sc_accordion_header ui-accordion-header">
<a href="#weddings">weddings</a>
</div>
<div class="sc_accordion_content ui-accordion-content vc_clearfix">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p><a href="http://5starlimobusrentals.com/our-services-2/weddings">Weddings</a></p>
<h3>Wedding Service 5 Star Limo Bus Rentals & Trolley</h3>
<p> </p>
<p>WE have a 4 hour minimum for all wedding packages. This rate also includes unlimited stops and locations during the duration of your service. All Taxes and Tip and included as well.</p>
<p> </p>
<p>Wedding packages :</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: 1px;"></div>
<div class="centered-box">
<div class="lazy-loading">
<a class="sc-button lazy-loading-item" data-ll-effect="drop-right-without-wrap" href="https://www.pinterest.com/Chicagobusrentals/" target="_self" style="">pinterest</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_row wpb_row vc_row-fluid vc_custom_1548965742454 vc_row-has-fill">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="fullwidth-block clearfix" style="background-position: center top;padding-top: 20px;padding-bottom: 20px;padding-left: 25px;padding-right: 25px;">
<div class="clearboth"></div>
<div class="sc-divider" style="margin-top: 45px;border-color: #1e73be;"></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<p style="text-align: center;"><span style="color: #000080;">Our Party Bus Rentals and 14 Passenger Limo Buses are Well Maintained and State of the Art.</span></p>
<p>5 star limo Party Bus Rentals and Trolleys. Wedding Limo party Bus Shuttle Service Airport. Prom Kids Party Bus Rentals/ Chicago Notre Dame Tailgates Michigan Wine Tours Party Bus Limo Bus Bus with Bathroom Chicago Bus Rentals</p>
</div>
</div>
<p><a href="http://5starlimobusrentals.com/request-quote-service"> http://5starlimobusrentals.com/request-quote-service</a></p>
</div>
</div>
<div class="vc_row wpb_row vc_inner vc_row-fluid">
<div class="wpb_column vc_column_container vc_col-sm-12">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_raw_code wpb_raw_js">
<div class="wpb_wrapper">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/5starlimobusrentals.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.9.8"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel='stylesheet' id='layerslider-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/css/layerslider.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='layerslider-origami-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/plugins/origami/layerslider.origami.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='layerslider-popup-css' href='http://5starlimobusrentals.com/wp-content/plugins/LayerSlider/static/layerslider/plugins/popup/layerslider.popup.css?ver=6.7.6' type='text/css' media='all'/>
<link rel='stylesheet' id='ls-google-fonts-css' href='http://fonts.googleapis.com/css?family=Lato:100,300,regular,700,900,400%7CNunito:300,regular,200,600%7CCaveat:regular&subset=latin%2Clatin-ext' type='text/css' media='all'/>
<link rel='stylesheet' id='contact-form-7-css' href='http://5starlimobusrentals.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.0.5' type='text/css' media='all'/>
<link rel='stylesheet' id='cookie-notice-front-css' href='http://5starlimobusrentals.com/wp-content/plugins/cookie-notice/css/front.min.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='NextGEN-css' href='http://5starlimobusrentals.com/home/content/a2pewpnaspod05_data03/95/41547595/html/wp-content/plugins/nextcellent-gallery-nextgen-legacy/css/nggallery.css?ver=1.0.0' type='text/css' media='screen'/>
<link rel='stylesheet' id='NextCellent-Framework-css' href='http://5starlimobusrentals.com/wp-content/plugins/11nextcellent-gallery-nextgen-legacy/css/framework-min.css?ver=1.0.1' type='text/css' media='screen'/>
<link rel='stylesheet' id='shutter-css' href='http://5starlimobusrentals.com/wp-content/plugins/11nextcellent-gallery-nextgen-legacy/shutter/shutter-reloaded.css?ver=1.3.4' type='text/css' media='screen'/>
<link rel='stylesheet' id='scalia-icons-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/icons.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-reset-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/reset.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-grid-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/grid.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='parent-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/style.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia-default-child/style.css?ver=4.9.8' type='text/css' media='all'/>
<!--[if lt IE 9]>
<link rel='stylesheet' id='scalia-ie-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/ie.css?ver=4.9.8' type='text/css' media='all' />
<![endif]-->
<link rel='stylesheet' id='scalia-header-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/header.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-widgets-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/widgets.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-portfolio-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/portfolio.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-custom-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia-default-child/css/custom.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='js_composer_front-css' href='http://5starlimobusrentals.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=5.5.5' type='text/css' media='all'/>
<link rel='stylesheet' id='fancybox-style-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/js/fancyBox/jquery.fancybox.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='scalia-vc_elements-css' href='http://5starlimobusrentals.com/wp-content/themes/scalia/css/vc_elements.css?ver=4.9.8' type='text/css' media='all'/>
<link rel='stylesheet' id='load-google-fonts-css' href='//fonts.googleapis.com/css?family=Roboto%3A300%2C100%7CSource+Sans+Pro%3A300%2C300italic%7CRoboto+Condensed%3A300%2Cregular&subset=latin-ext%2Cgreek%2Ccyrillic-ext%2Cgreek-ext%2Clatin%2Cvietnamese%2Ccyrillic&ver=4.9.8' type='text/css' media='all'/>
<script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?ver=1.8.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var cnArgs = {"ajaxurl":"http:\/\/5starlimobusrentals.com\/wp-admin\/admin-ajax.php","hideEffect":"fade","onScroll":"yes","onScrollOffset":"100","cookieName":"cookie_notice_accepted","cookieValue":"true","cookieTime":"2592000","cookiePath":"\/","cookieDomain":"","redirection":"","cache":"1","refuse":"yes","revoke_cookies":"1","revoke_cookies_opt":"automatic","secure":"0"};
/* ]]> */
</script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/cookie-notice/js/front.min.js?ver=1.2.44'></script>
<script type='text/javascript' src='http://p.jwpcdn.com/6/12/jwplayer.js?ver=4.9.8'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var shutterSettings = {"msgLoading":"L O A D I N G","msgClose":"Click to Close","imageCount":"1"};
/* ]]> */
</script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/11nextcellent-gallery-nextgen-legacy/shutter/shutter-reloaded.js?ver=1.3.3'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/11nextcellent-gallery-nextgen-legacy/js/owl.carousel.min.js?ver=2'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-includes/js/jquery/ui/position.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-includes/js/jquery/ui/tooltip.min.js?ver=1.11.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var ngg_ajax = {"path":"http:\/\/5starlimobusrentals.com\/wp-content\/plugins\/11nextcellent-gallery-nextgen-legacy\/","callback":"http:\/\/5starlimobusrentals.com\/index.php?callback=ngg-ajax","loading":"loading"};
/* ]]> */
</script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/11nextcellent-gallery-nextgen-legacy/js/ngg.js?ver=2.1'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-form-move-tracker.js?ver=1.9'></script>
<script type='text/javascript' src='http://5starlimobusrentals.com/wp-content/plugins/duracelltomi-google-tag-manager/js/analytics-talk-content-tracking.js?ver=1.9'></script>
<meta name="generator" content="Powered by LayerSlider 6.7.6 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress."/>
<!-- LayerSlider updates and docs at: https://layerslider.kreaturamedia.com -->
<link rel='https://api.w.org/' href='http://5starlimobusrentals.com/wp-json/'/>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://5starlimobusrentals.com/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://5starlimobusrentals.com/wp-includes/wlwmanifest.xml"/>
<meta name="generator" content="WordPress 4.9.8"/>
<link rel='shortlink' href='http://5starlimobusrentals.com/'/>
<link rel="alternate" type="application/json+oembed" href="http://5starlimobusrentals.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2F5starlimobusrentals.com%2F"/>
<link rel="alternate" type="text/xml+oembed" href="http://5starlimobusrentals.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2F5starlimobusrentals.com%2F&format=xml"/>
<!-- <meta name="NextGEN" version="1.9.35" /> -->
<script type="text/javascript">jwplayer.defaults = { "ph": 2 };</script>
<script type="text/javascript">
if (typeof(jwp6AddLoadEvent) == 'undefined') {
function jwp6AddLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
}
</script>
<!-- This site is optimized with the Schema plugin v1.7.2 - https://schema.press -->
<script type="application/ld+json">[{"@context":"http:\/\/schema.org\/","@type":"WPHeader","url":"http:\/\/5starlimobusrentals.com","headline":"Party Bus Rental Chicago Wedding Transportation Trolley airport","description":"Party bus rental , airport transfer, Weddings Michigan Wine Tours Notre Dame Tailgates 5 Star Service"},{"@context":"http:\/\/schema.org\/","@type":"WPFooter","url":"http:\/\/5starlimobusrentals.com","headline":"Party Bus Rental Chicago Wedding Transportation Trolley airport","description":"Party bus rental , airport transfer, Weddings Michigan Wine Tours Notre Dame Tailgates 5 Star Service","copyrightYear":"2018"}]</script>
<!-- This site is optimized with the Schema plugin v1.7.2 - https://schema.press -->
<script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"Organization","@id":"#organization","name":"5 star Limo Bus Rentals Party Bus Rentals & Trolley","url":"http:\/\/5starlimobusrentals.com\/","logo":"wp-content\/uploads\/2018\/05\/5-star-limo225-big-logo.png","contactPoint":{"@type":"ContactPoint","telephone":"+1-708-272-7188","url":"5starlimobusrentals.com\/contact","contactType":"customer support"},"sameAs":["https:\/\/plus.google.com\/113616506143623122445","https:\/\/www.facebook.com\/5tarlimobusrentals\/","Https:\/\/Twitter.com\/5starlimo4u","Https:\/\/instagram.com\/5starlimorentals","Https:\/\/pintrest.com\/Chicagolandbus"]}</script>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" type="text/javascript">//<![CDATA[
dataLayer.push({"siteID":0,"siteName":"","pagePostType":"frontpage","pagePostType2":"single-page","pagePostAuthor":"Danny Fernandes","browserName":"Chrome","browserVersion":"63.0.3239.108","browserEngineName":"Blink","browserEngineVersion":"","osName":"OS X","osVersion":"10.14.0","deviceType":"desktop","deviceManufacturer":"Apple","deviceModel":"Macintosh","postCountOnPage":1,"postCountTotal":1,"postID":320,"postFormat":"standard","gtm.whitelist":["awct","html","img","ga","tc","tdc","ua","d","jsm","c","k","e","j","v","r","f","u","v"],"gtm.blacklist":[]});//]]>
</script>
<script data-cfasync="false">//<![CDATA[
(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=
'//www.googletagmanager.com/gtm.'+'js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W4HZ94R');//]]>
</script>
<!-- End Google Tag Manager -->
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<!-- Facebook Pixel Code -->
<script type='text/javascript'>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
</script>
<!-- End Facebook Pixel Code -->
<script type='text/javascript'>
fbq('init', '315312448937661', [], {
"agent": "wordpress-4.9.8-1.7.16"
});
</script>
<script type='text/javascript'>
fbq('track', 'PageView', []);
</script>
<!-- Facebook Pixel Code -->
<noscript>
<img height="1" width="1" style="display:none" alt="fbpx" src="https://www.facebook.com/tr?id=315312448937661&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="http://5starlimobusrentals.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]-->
<!-- This site is optimized with the Schema plugin v1.7.2 - https://schema.press -->
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "http://5starlimobusrentals.com",
"name": "Home"
}
}
]
}</script>
<link rel="icon" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-150x150.png" sizes="32x32"/>
<link rel="icon" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-256x256.png" sizes="192x192"/>
<link rel="apple-touch-icon-precomposed" href="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-256x256.png"/>
<meta name="msapplication-TileImage" content="http://5starlimobusrentals.com/wp-content/uploads/2017/09/cropped-5tar-face-book-limo-large-logo-300x300.png"/>
<style type="text/css" data-type="vc_custom-css">.post-slider-index .wpb_flexslider .flex-control-nav {
bottom: 60px !important;
}
.img-slider-resp img {
margin-top: 35px !important;
}
@media (max-width: 767px) {
.wpb_gallery_slides .fullwidth-block {
height: 1000px;
}
.custom-textbox .wpb_text_column {
padding-left: 10 !important;
padding-right: 0 !important;
}
.resp-middle {
text-align: center;
}
.post-slider-index .flex-control-nav {
display: none;
}
.img-slider-resp {
display: none;
}
}
@media (max-width: 340px) {
.wpb_gallery_slides .fullwidth-block {
height: 1200px;
}
}</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1476099350103 {
padding-top: 100px !important;
padding-bottom: 100px !important;
background-color: #f7f7f7 !important;
}
.vc_custom_1476099562719 {
padding-top: 50px !important;
padding-bottom: 50px !important;
background-color: #3c3a8c !important;
}
.vc_custom_1476099386168 {
padding-bottom: 10px !important;
}
.vc_custom_1476099645110 {
padding-bottom: 10px !important;
}</style>
<noscript>
<style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style>
</noscript>
</head>
<body class="home page-template-default page page-id-320 page-parent cookies-not-set wpb-js-composer js-comp-ver-5.5.5 vc_responsive">
<div id="page" class="layout-fullwidth">
<a href="#page" class="scroll-top-button"></a>
<div id="top-area" class="top-area top-area-style-2">
<div class="container">
<div class="top-area-items clearfix">
<div class="top-area-socials">
<div class="socials">
<div class="socials-item twitter">
<a href="https://twitter.com/5starlimo4u" target="_blank" title="twitter">twitter</a>
</div>
<div class="socials-item facebook">
<a href="https://www.facebook.com/5tarlimobusrentals/" target="_blank" title="facebook">facebook</a>
</div>
<div class="socials-item googleplus">
<a href="https://plus.google.com/+Limosalivecom" target="_blank" title="googleplus">googleplus</a>
</div>
<div class="socials-item stumbleupon">
<a href="https://book.mylimobiz.com/v4/5tar" target="_blank" title="stumbleupon">stumbleupon</a>
</div>
<div class="socials-item rss">
<a href="http://5starlimobusrentals.com/feed" target="_blank" title="rss">rss</a>
</div>
</div>
</div>
<div class="top-area-contacts">
<div class="sc-contacts">
<div class="sc-contacts-item sc-contacts-address">14530 Colonial Pkwy, Plainfield IL 60544</div>
<div class="sc-contacts-item sc-contacts-phone"> +1-708-272-7188</div>
<div class="sc-contacts-item sc-contacts-email">
<a href="mailto:book@5starlimobusrentals.com">book@5starlimobusrentals.com</a>
</div>
</div>
</div>
<div class="top-area-search">
<form role="search" method="get" id="top-area-searchform" class="searchform" action="http://5starlimobusrentals.com/">
<div>
<input type="text" value="" name="s" id="top-area-s"/>